houzhongjian
2024-10-30 a28ca3f36d0ace05966a8c0fac1e4b5fe921f882
提交 | 用户 | 时间
ce910c 1 package com.netsdk.lib.enumeration;
H 2
3 /**
4  * @author 251823
5  * @description 子连接连接业务模式
6  * @date 2022/06/16 15:17:48
7  */
8 public enum EM_SUBLINK_MODE {
9     /**
10      * 通用模式,默认值
11      */
12     EM_SUBLINK_MODE_NORMAL(0, "通用模式,默认值"),
13     /**
14      * 低功耗模式
15      */
16     EM_SUBLINK_MODE_LOWPOWER(1, "低功耗模式");
17
18     private int value;
19
20     private String note;
21
22     public String getNote() {
23         return note;
24     }
25
26     public int getValue() {
27         return value;
28     }
29
30     EM_SUBLINK_MODE(int givenValue, String note) {
31         this.value = givenValue;
32         this.note = note;
33     }
34
35     public static String getNoteByValue(int givenValue) {
36         for (EM_SUBLINK_MODE enumType : EM_SUBLINK_MODE.values()) {
37             if (givenValue == enumType.getValue()) {
38                 return enumType.getNote();
39             }
40         }
41         return null;
42     }
43
44     public static int getValueByNote(String givenNote) {
45         for (EM_SUBLINK_MODE enumType : EM_SUBLINK_MODE.values()) {
46             if (givenNote.equals(enumType.getNote())) {
47                 return enumType.getValue();
48             }
49         }
50         return -1;
51     }
52
53 }