潘志宝
2024-11-28 231897591c909b164defebfdb5936387ec2807d0
提交 | 用户 | 时间
149dd0 1 package com.iailab.netsdk.lib.enumeration;
H 2
3
4 /** 
5 * @author 291189
6 * @description  诱导屏内容是否滚动 
7 * @origin autoTool
8 * @date 2023/06/27 15:49:59
9 */
10 public enum EM_GUIDESCREEN_ROLL {
11 /**
12
13 */
14 EM_GUIDESCREEN_ROLL_UNKNOWN(0,""),
15 /**
16 不滚动
17 */
18 EM_GUIDESCREEN_ROLL_DISABLE(1,"不滚动"),
19 /**
20 滚动
21 */
22 EM_GUIDESCREEN_ROLL_ENABLE(2,"滚动");
23
24 private int value;
25
26 private String note;
27
28 public String getNote() {
29         return note;
30     }
31
32 public int getValue() {
33         return value;
34     }
35
36 EM_GUIDESCREEN_ROLL(int givenValue, String note) {
37         this.value = givenValue;
38         this.note = note;
39     }
40
41 public static String getNoteByValue(int givenValue) {
42         for (EM_GUIDESCREEN_ROLL enumType : EM_GUIDESCREEN_ROLL.values()) {
43             if (givenValue == enumType.getValue()) {
44                 return enumType.getNote();
45             }
46         }
47         return null;
48     }
49
50 public static int getValueByNote(String givenNote) {
51         for (EM_GUIDESCREEN_ROLL enumType : EM_GUIDESCREEN_ROLL.values()) {
52             if (givenNote.equals(enumType.getNote())) {
53                 return enumType.getValue();
54             }
55         }
56         return -1;
57     }
58
59 public static EM_GUIDESCREEN_ROLL getEnum(int value) {
60         for (EM_GUIDESCREEN_ROLL e : EM_GUIDESCREEN_ROLL.values()) {
61             if (e.getValue() == value)
62                 return e;
63         }
64         return EM_GUIDESCREEN_ROLL.EM_GUIDESCREEN_ROLL_UNKNOWN;
65     }
66
67 }