dengzedong
2024-12-19 85b2001c0ec2f1adc598db3bf47ad457dcca7074
提交 | 用户 | 时间
149dd0 1 package com.iailab.netsdk.lib.enumeration;
H 2
3
4 /** 
5 * @author 291189
6 * @description  显示颜色 
7 * @origin autoTool
8 * @date 2023/06/27 16:54:41
9 */
10 public enum EM_NET_ECK_PANEL_COLOR {
11 /**
12 未知
13 */
14 EM_NET_ECK_PANEL_COLOR_UNKNOWN(0,"未知"),
15 /**
16 红色
17 */
18 EM_NET_ECK_PANEL_COLOR_RED(1,"红色"),
19 /**
20 绿色
21 */
22 EM_NET_ECK_PANEL_COLOR_GREEN(2,"绿色"),
23 /**
24 黄色
25 */
26 EM_NET_ECK_PANEL_COLOR_YELLOW(3,"黄色");
27
28 private int value;
29
30 private String note;
31
32 public String getNote() {
33         return note;
34     }
35
36 public int getValue() {
37         return value;
38     }
39
40 EM_NET_ECK_PANEL_COLOR(int givenValue, String note) {
41         this.value = givenValue;
42         this.note = note;
43     }
44
45 public static String getNoteByValue(int givenValue) {
46         for (EM_NET_ECK_PANEL_COLOR enumType : EM_NET_ECK_PANEL_COLOR.values()) {
47             if (givenValue == enumType.getValue()) {
48                 return enumType.getNote();
49             }
50         }
51         return null;
52     }
53
54 public static int getValueByNote(String givenNote) {
55         for (EM_NET_ECK_PANEL_COLOR enumType : EM_NET_ECK_PANEL_COLOR.values()) {
56             if (givenNote.equals(enumType.getNote())) {
57                 return enumType.getValue();
58             }
59         }
60         return -1;
61     }
62
63 public static EM_NET_ECK_PANEL_COLOR getEnum(int value) {
64         for (EM_NET_ECK_PANEL_COLOR e : EM_NET_ECK_PANEL_COLOR.values()) {
65             if (e.getValue() == value)
66                 return e;
67         }
68         return EM_NET_ECK_PANEL_COLOR.EM_NET_ECK_PANEL_COLOR_UNKNOWN;
69     }
70
71 }