dengzedong
2024-12-19 85b2001c0ec2f1adc598db3bf47ad457dcca7074
提交 | 用户 | 时间
149dd0 1 package com.iailab.netsdk.lib.enumeration;
H 2
3
4 /**
5  * @author 260611
6  * @description 报警状态
7  * @date 2022/04/20 10:50:24
8  */
9 public enum EM_THINGS_CURRENTSTATUSGET_STATUS {
10     /**
11      * 未知
12      */
13     EM_THINGS_CURRENTSTATUSGET_STATUS_UNKNOWN(-1, "未知"),
14     /**
15      * 正常
16      */
17     EM_THINGS_CURRENTSTATUSGET_STATUS_NORMAL(0, "正常"),
18     /**
19      * 预警
20      */
21     EM_THINGS_CURRENTSTATUSGET_STATUS_EARLY(1, "预警"),
22     /**
23      * 报警
24      */
25     EM_THINGS_CURRENTSTATUSGET_STATUS_ALARM(2, "报警");
26
27     private int value;
28
29     private String note;
30
31     public String getNote() {
32         return note;
33     }
34
35     public int getValue() {
36         return value;
37     }
38
39     EM_THINGS_CURRENTSTATUSGET_STATUS(int givenValue, String note) {
40         this.value = givenValue;
41         this.note = note;
42     }
43
44     public static String getNoteByValue(int givenValue) {
45         for (EM_THINGS_CURRENTSTATUSGET_STATUS enumType : EM_THINGS_CURRENTSTATUSGET_STATUS.values()) {
46             if (givenValue == enumType.getValue()) {
47                 return enumType.getNote();
48             }
49         }
50         return null;
51     }
52
53     public static int getValueByNote(String givenNote) {
54         for (EM_THINGS_CURRENTSTATUSGET_STATUS enumType : EM_THINGS_CURRENTSTATUSGET_STATUS.values()) {
55             if (givenNote.equals(enumType.getNote())) {
56                 return enumType.getValue();
57             }
58         }
59         return -2;
60     }
61
62     public static EM_THINGS_CURRENTSTATUSGET_STATUS getEnum(int value) {
63         for (EM_THINGS_CURRENTSTATUSGET_STATUS e : EM_THINGS_CURRENTSTATUSGET_STATUS.values()) {
64             if (e.getValue() == value)
65                 return e;
66         }
67         return EM_THINGS_CURRENTSTATUSGET_STATUS.EM_THINGS_CURRENTSTATUSGET_STATUS_UNKNOWN;
68     }
69
70 }