Java枚举类用法实例

时间:2022-05-11 07:36:06

本文实例讲述了Java枚举类用法。分享给大家供大家参考。具体如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
package com.school.stereotype;
/**
 * 活动枚举类型
 * @author QiXuan.Chen
 */
public enum EventStatus {
  /**
   * 未发布。
   */
  DRAFT("DRAFT", "未发布"),
  /**
   * 已发布。
   */
  PUBLISHED("PUBLISHED", "已发布");
  /**
   * 活动状态的值。
   */
  private String value;
  /**
   * 活动状态的中文描述。
   */
  private String text;
  /**
   * @param status 活动状态的值
   * @param desc 活动状态的中文描述
   */
  private EventStatus(String status, String desc) {
    value = status;
    text = desc;
  }
  /**
   * @return 当前枚举对象的值。
   */
  public String getValue() {
    return value;
  }
  /**
   * @return 当前状态的中文描述。
   */
  public String getText() {
    return text;
  }
  /**
   * 根据活动状态的值获取枚举对象。
   *
   * @param status 活动状态的值
   * @return 枚举对象
   */
  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值非法,没有符合课程状态的枚举对象");
  }
}

希望本文所述对大家的java程序设计有所帮助。