dengzedong
2024-12-19 85b2001c0ec2f1adc598db3bf47ad457dcca7074
提交 | 用户 | 时间
149dd0 1 package com.iailab.netsdk.lib.enumeration;
H 2
3 /**
4  * @author : 291189
5  * @since : Created in 2021/6/30 11:11
6  * 安检门事件人员是否戴眼镜
7  */
8 public enum EM_SECURITYGATE_GLASSES_TYPE {
9
10     EM_SECURITYGATE_GLASSES_UNKNOWN(-1,"未知"),                    // 未知
11     EM_SECURITYGATE_GLASSES_UNDEFINE(0,"未识别"),                        // 未识别
12     EM_SECURITYGATE_WITHOUT_GLASSES(1,"未戴眼镜"),                        // 未戴眼镜
13     EM_SECURITYGATE_WITH_GLASSES(2,"戴眼镜");                            // 戴眼镜
14
15     private final int value;
16     private final String note;
17
18     EM_SECURITYGATE_GLASSES_TYPE(int givenValue, String note) {
19         this.value = givenValue;
20         this.note = note;
21     }
22
23     public String getNote() {
24         return note;
25     }
26
27     public int getValue() {
28         return value;
29     }
30
31     public static String getNoteByValue(int givenValue) {
32         for (EM_SECURITYGATE_GLASSES_TYPE enumType : EM_SECURITYGATE_GLASSES_TYPE.values()) {
33             if (givenValue == enumType.getValue()) {
34                 return enumType.getNote();
35             }
36         }
37         return null;
38     }
39
40     public static int getValueByNote(String givenNote) {
41         for (EM_SECURITYGATE_GLASSES_TYPE enumType : EM_SECURITYGATE_GLASSES_TYPE.values()) {
42             if (givenNote.equals(enumType.getNote())) {
43                 return enumType.getValue();
44             }
45         }
46         return -1;
47     }
48
49     public static EM_SECURITYGATE_GLASSES_TYPE getEnum(int value) {
50         for (EM_SECURITYGATE_GLASSES_TYPE e : EM_SECURITYGATE_GLASSES_TYPE.values()) {
51             if (e.getValue() == value)
52                 return e;
53         }
54         return EM_SECURITYGATE_GLASSES_TYPE.EM_SECURITYGATE_GLASSES_UNKNOWN;
55     }
56 }