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
59
60
61
62
63
64
65
66
67
package com.iailab.netsdk.lib.enumeration;
 
 
/** 
* @author 291189
* @description  图标 
* @origin autoTool
* @date 2023/06/27 16:54:41
*/
public enum EM_NET_ECK_PANEL_ICON {
/**
未知
*/
EM_NET_ECK_PANEL_ICON_UNKNOWN(0,"未知"),
/**
禁止
*/
EM_NET_ECK_PANEL_ICON_CLOSE(1,"禁止"),
/**
禁止
*/
EM_NET_ECK_PANEL_ICON_CLOSECUSTOM(2,"禁止");
 
private int value;
 
private String note;
 
public String getNote() {
        return note;
    }
 
public int getValue() {
        return value;
    }
 
EM_NET_ECK_PANEL_ICON(int givenValue, String note) {
        this.value = givenValue;
        this.note = note;
    }
 
public static String getNoteByValue(int givenValue) {
        for (EM_NET_ECK_PANEL_ICON enumType : EM_NET_ECK_PANEL_ICON.values()) {
            if (givenValue == enumType.getValue()) {
                return enumType.getNote();
            }
        }
        return null;
    }
 
public static int getValueByNote(String givenNote) {
        for (EM_NET_ECK_PANEL_ICON enumType : EM_NET_ECK_PANEL_ICON.values()) {
            if (givenNote.equals(enumType.getNote())) {
                return enumType.getValue();
            }
        }
        return -1;
    }
 
public static EM_NET_ECK_PANEL_ICON getEnum(int value) {
        for (EM_NET_ECK_PANEL_ICON e : EM_NET_ECK_PANEL_ICON.values()) {
            if (e.getValue() == value)
                return e;
        }
        return EM_NET_ECK_PANEL_ICON.EM_NET_ECK_PANEL_ICON_UNKNOWN;
    }
 
}