dengzedong
2024-12-19 85b2001c0ec2f1adc598db3bf47ad457dcca7074
提交 | 用户 | 时间
149dd0 1 package com.iailab.netsdk.lib.enumeration;
H 2
3 /**
4  * @author 251823
5  * @description 道闸栏状态
6  * @date 2020/12/15
7  */
8 public enum EM_TRAFFICSTROBE_STATUS {
9
10     // 未知
11     NET_TRAFFICSTROBE_STATUS_UNKNOWN(0, "未知"),
12     // 道闸栏关闭
13     NET_TRAFFICSTROBE_STATUS_CLOSE_COMPLETE(1, "道闸栏关闭"),
14     // 道闸栏打开
15     NET_TRAFFICSTROBE_STATUS_OPEN_COMPLETE(2, "道闸栏打开"),
16     // 道闸栏未完全关闭
17     NET_TRAFFICSTROBE_STATUS_NOT_CLOSE_COMPLETE(3, "道闸栏未完全关闭"),
18     // 道闸栏未完全打开
19     NET_TRAFFICSTROBE_STATUS_NOT_OPEN_COMPLETE(4, "道闸栏未完全打开"),
20     // 道闸停止
21     NET_TRAFFICSTROBE_STATUS_NOT_STROBE_STOP(5, "道闸停止");
22
23     private int value;
24     private String note;
25
26     private EM_TRAFFICSTROBE_STATUS(int givenValue, String note) {
27         this.value = givenValue;
28         this.note = note;
29     }
30
31     public String getNote() {
32         return note;
33     }
34
35     public int getValue() {
36         return value;
37     }
38
39     public static String getNoteByValue(int givenValue) {
40         for (EM_TRAFFICSTROBE_STATUS enumType : EM_TRAFFICSTROBE_STATUS.values()) {
41             if (givenValue == enumType.getValue()) {
42                 return enumType.getNote();
43             }
44         }
45         return null;
46     }
47
48     public static int getValueByNote(String givenNote) {
49         for (EM_TRAFFICSTROBE_STATUS enumType : EM_TRAFFICSTROBE_STATUS.values()) {
50             if (givenNote.equals(enumType.getNote())) {
51                 return enumType.getValue();
52             }
53         }
54         return -1;
55     }
56 }