潘志宝
2024-12-12 b095cfc785d4a280ffaae086503a6a0e4f1fa4c1
提交 | 用户 | 时间
149dd0 1 package com.iailab.netsdk.lib.enumeration;
H 2
3
4 /** 
5 * @author 291189
6 * @description  背光补偿模式,当背光模式为Backlight时有效 
7 * @origin autoTool
8 * @date 2023/11/30 16:22:26
9 */
10 public enum EM_BACKLIGHT_MODE {
11     /**
12      * 未知模式
13      */
14     EM_BACKLIGHT_UNKONW(0,"未知模式"),
15     /**
16      * 默认模式
17      */
18     EM_BACKLIGHT_DEFAULT(1,"默认模式"),
19     /**
20      * 自定义区域模式
21      */
22     EM_BACKLIGHT_REGION(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_BACKLIGHT_MODE(int givenValue, String note) {
37         this.value = givenValue;
38         this.note = note;
39     }
40
41 public static String getNoteByValue(int givenValue) {
42         for (EM_BACKLIGHT_MODE enumType : EM_BACKLIGHT_MODE.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_BACKLIGHT_MODE enumType : EM_BACKLIGHT_MODE.values()) {
52             if (givenNote.equals(enumType.getNote())) {
53                 return enumType.getValue();
54             }
55         }
56         return -1;
57     }
58
59 public static EM_BACKLIGHT_MODE getEnum(int value) {
60         for (EM_BACKLIGHT_MODE e : EM_BACKLIGHT_MODE.values()) {
61             if (e.getValue() == value){
62                 return e;
63             }
64         }
65         return EM_BACKLIGHT_MODE.EM_BACKLIGHT_UNKONW;
66     }
67
68 }