houzhongjian
2024-10-30 a28ca3f36d0ace05966a8c0fac1e4b5fe921f882
提交 | 用户 | 时间
ce910c 1 package com.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_POS {
11 /**
12
13 */
14 EM_GUIDESCREEN_POS_UNKNOWN(0,""),
15 /**
16 左侧
17 */
18 EM_GUIDESCREEN_POS_LEFT(1,"左侧"),
19 /**
20 右侧
21 */
22 EM_GUIDESCREEN_POS_RIGHT(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_POS(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_POS enumType : EM_GUIDESCREEN_POS.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_POS enumType : EM_GUIDESCREEN_POS.values()) {
52             if (givenNote.equals(enumType.getNote())) {
53                 return enumType.getValue();
54             }
55         }
56         return -1;
57     }
58
59 public static EM_GUIDESCREEN_POS getEnum(int value) {
60         for (EM_GUIDESCREEN_POS e : EM_GUIDESCREEN_POS.values()) {
61             if (e.getValue() == value)
62                 return e;
63         }
64         return EM_GUIDESCREEN_POS.EM_GUIDESCREEN_POS_UNKNOWN;
65     }
66
67 }