Java Enumeration Class usage instances

Source: Internet
Author: User

The examples in this article describe the Java enumeration class usage. Share to everyone for your reference. Specifically as follows:

?

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 This is the same as the package com.school.stereotype; /** * Active Enumeration type * @author Qixuan.chen/public enum EventStatus {/** * not published. * * DRAFT ("DRAFT", "unpublished"),/** * has been released. * * Published ("published", "published"); /** * The value of the active state. * * Private String value; /** * The Chinese description of the activity status. */private String text; /** * @param the value of status activity * @param the Chinese description of the DESC activity state * * Private EventStatus (string status, String desc) {value = status; te XT = desc; /** * @return The value of the current enumeration object. */Public String GetValue () {return value;}/** * @return The Chinese description of the current state. */Public String GetText () {return text;}/** * Gets the enumeration object based on the value of the active state. * * @param status Activity value * @return enumerated object/public static EventStatus getinstance (String status) {eventstatus[] Allstatus = Eventstatus.values (); for (EventStatus Ws:allsTatus) {if (Ws.getvalue (). Equalsignorecase (status)) {return WS}} throw new IllegalArgumentException ("status value illegal, no compliance class The enumeration object of the process state "); } }

I hope this article will help you with your Java programming.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.