潘志宝
2024-12-12 b095cfc785d4a280ffaae086503a6a0e4f1fa4c1
提交 | 用户 | 时间
149dd0 1 package com.iailab.netsdk.lib.enumeration;
H 2
3
4 /** 
5 * @author 291189
6 * @description  外接电源状态 
7 * @date 2022/08/31 14:44:16
8 */
9 public enum EM_EXPOWER_STATE {
10 /**
11 未连接
12 */
13 EM_EXPOWER_DISCONNECT(0,"未连接"),
14 /**
15 连接
16 */
17 EM_EXPOWER_CONNECT(1,"连接"),
18 /**
19 未知
20 */
21 EM_EXPOWER_UNKNOWN(2,"未知");
22
23 private int value;
24
25 private String note;
26
27 public String getNote() {
28         return note;
29     }
30
31 public int getValue() {
32         return value;
33     }
34
35 EM_EXPOWER_STATE(int givenValue, String note) {
36         this.value = givenValue;
37         this.note = note;
38     }
39
40 public static String getNoteByValue(int givenValue) {
41         for (EM_EXPOWER_STATE enumType : EM_EXPOWER_STATE.values()) {
42             if (givenValue == enumType.getValue()) {
43                 return enumType.getNote();
44             }
45         }
46         return null;
47     }
48
49 public static int getValueByNote(String givenNote) {
50         for (EM_EXPOWER_STATE enumType : EM_EXPOWER_STATE.values()) {
51             if (givenNote.equals(enumType.getNote())) {
52                 return enumType.getValue();
53             }
54         }
55         return -1;
56     }
57
58 public static EM_EXPOWER_STATE getEnum(int value) {
59         for (EM_EXPOWER_STATE e : EM_EXPOWER_STATE.values()) {
60             if (e.getValue() == value)
61                 return e;
62         }
63         return EM_EXPOWER_STATE.EM_EXPOWER_DISCONNECT;
64     }
65
66 }