提交 | 用户 | 时间
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_ISBOLD {
11 /**
12 不加粗
13 */
14 EM_NET_ECK_PANEL_ISBOLD_FALSE(0,"不加粗"),
15 /**
16 加粗
17 */
18 EM_NET_ECK_PANEL_ISBOLD_TRUE(1,"加粗");
19
20 private int value;
21
22 private String note;
23
24 public String getNote() {
25         return note;
26     }
27
28 public int getValue() {
29         return value;
30     }
31
32 EM_NET_ECK_PANEL_ISBOLD(int givenValue, String note) {
33         this.value = givenValue;
34         this.note = note;
35     }
36
37 public static String getNoteByValue(int givenValue) {
38         for (EM_NET_ECK_PANEL_ISBOLD enumType : EM_NET_ECK_PANEL_ISBOLD.values()) {
39             if (givenValue == enumType.getValue()) {
40                 return enumType.getNote();
41             }
42         }
43         return null;
44     }
45
46 public static int getValueByNote(String givenNote) {
47         for (EM_NET_ECK_PANEL_ISBOLD enumType : EM_NET_ECK_PANEL_ISBOLD.values()) {
48             if (givenNote.equals(enumType.getNote())) {
49                 return enumType.getValue();
50             }
51         }
52         return -1;
53     }
54
55 public static EM_NET_ECK_PANEL_ISBOLD getEnum(int value) {
56         for (EM_NET_ECK_PANEL_ISBOLD e : EM_NET_ECK_PANEL_ISBOLD.values()) {
57             if (e.getValue() == value)
58                 return e;
59         }
60         return EM_NET_ECK_PANEL_ISBOLD.EM_NET_ECK_PANEL_ISBOLD_FALSE;
61     }
62
63 }