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