潘志宝
2024-11-28 231897591c909b164defebfdb5936387ec2807d0
提交 | 用户 | 时间
149dd0 1 package com.iailab.netsdk.lib.enumeration;
H 2
3 public enum EM_CURRENT_STATE_TYPE {
4     EM_CURRENT_STATE_UNKNOWN(0, "电流状态未知"),
5     EM_CURRENT_STATE_OVER_CURRENT(1, "电流过载"),                      // 电流过载
6     EM_CURRENT_STATE_NORMAL(2, "电流正常"),                            // 电流正常
7     EM_CURRENT_STATE_UNDER_CURRENT(3, "电源欠流");                     // 电源欠流
8
9     private int value;
10     private String note;
11
12     private EM_CURRENT_STATE_TYPE(int givenValue, String note) {
13         this.value = givenValue;
14         this.note = note;
15     }
16
17     public String getNote() {
18         return note;
19     }
20
21     public int getValue() {
22         return value;
23     }
24
25     public static String getNoteByValue(int givenValue) {
26         for (EM_CURRENT_STATE_TYPE enumType : EM_CURRENT_STATE_TYPE.values()) {
27             if (givenValue == enumType.getValue()) {
28                 return enumType.getNote();
29             }
30         }
31         return null;
32     }
33
34     public static int getValueByNote(String givenNote) {
35         for (EM_CURRENT_STATE_TYPE enumType : EM_CURRENT_STATE_TYPE.values()) {
36             if (givenNote.equals(enumType.getNote())) {
37                 return enumType.getValue();
38             }
39         }
40         return -1;
41     }
42
43 }