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
package com.iailab.netsdk.lib.enumeration;
 
/**
 * @author : 291189
 * @since : Created in 2021/6/30 11:11
 * 安检门事件人员是否戴眼镜
 */
public enum EM_SECURITYGATE_GLASSES_TYPE {
 
    EM_SECURITYGATE_GLASSES_UNKNOWN(-1,"未知"),                    // 未知
    EM_SECURITYGATE_GLASSES_UNDEFINE(0,"未识别"),                        // 未识别
    EM_SECURITYGATE_WITHOUT_GLASSES(1,"未戴眼镜"),                        // 未戴眼镜
    EM_SECURITYGATE_WITH_GLASSES(2,"戴眼镜");                            // 戴眼镜
 
    private final int value;
    private final String note;
 
    EM_SECURITYGATE_GLASSES_TYPE(int givenValue, String note) {
        this.value = givenValue;
        this.note = note;
    }
 
    public String getNote() {
        return note;
    }
 
    public int getValue() {
        return value;
    }
 
    public static String getNoteByValue(int givenValue) {
        for (EM_SECURITYGATE_GLASSES_TYPE enumType : EM_SECURITYGATE_GLASSES_TYPE.values()) {
            if (givenValue == enumType.getValue()) {
                return enumType.getNote();
            }
        }
        return null;
    }
 
    public static int getValueByNote(String givenNote) {
        for (EM_SECURITYGATE_GLASSES_TYPE enumType : EM_SECURITYGATE_GLASSES_TYPE.values()) {
            if (givenNote.equals(enumType.getNote())) {
                return enumType.getValue();
            }
        }
        return -1;
    }
 
    public static EM_SECURITYGATE_GLASSES_TYPE getEnum(int value) {
        for (EM_SECURITYGATE_GLASSES_TYPE e : EM_SECURITYGATE_GLASSES_TYPE.values()) {
            if (e.getValue() == value)
                return e;
        }
        return EM_SECURITYGATE_GLASSES_TYPE.EM_SECURITYGATE_GLASSES_UNKNOWN;
    }
}