1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
package com.iailab.netsdk.lib.enumeration;
 
 
/** 
* @author 291189
* @description  背光模式 
* @origin autoTool
* @date 2023/11/30 16:22:26
*/
public enum EM_VIDEOIN_BACKLIGHT_MODE {
    /**
     * 未知模式
     */
    EM_BACKLIGHT_UNKNOW(0,"未知模式"),
    /**
     * 关闭
     */
    EM_BACKLIGHT_OFF(1,"关闭"),
    /**
     * 背光补偿
     */
    EM_BACKLIGHT_BACKLIGHT(2,"背光补偿"),
    /**
     * 强光抑制
     */
    EM_BACKLIGHT_GLAREINHIBITION(3,"强光抑制"),
    /**
     * 宽动态
     */
    EM_BACKLIGHT_WIDEDYNAMIC(4,"宽动态"),
    /**
     * 场景自适应
     */
    EM_BACKLIGHT_SSA(5,"场景自适应");
 
private int value;
 
private String note;
 
public String getNote() {
        return note;
    }
 
public int getValue() {
        return value;
    }
 
EM_VIDEOIN_BACKLIGHT_MODE(int givenValue, String note) {
        this.value = givenValue;
        this.note = note;
    }
 
public static String getNoteByValue(int givenValue) {
        for (EM_VIDEOIN_BACKLIGHT_MODE enumType : EM_VIDEOIN_BACKLIGHT_MODE.values()) {
            if (givenValue == enumType.getValue()) {
                return enumType.getNote();
            }
        }
        return null;
    }
 
public static int getValueByNote(String givenNote) {
        for (EM_VIDEOIN_BACKLIGHT_MODE enumType : EM_VIDEOIN_BACKLIGHT_MODE.values()) {
            if (givenNote.equals(enumType.getNote())) {
                return enumType.getValue();
            }
        }
        return -1;
    }
 
public static EM_VIDEOIN_BACKLIGHT_MODE getEnum(int value) {
        for (EM_VIDEOIN_BACKLIGHT_MODE e : EM_VIDEOIN_BACKLIGHT_MODE.values()) {
            if (e.getValue() == value){
                return e;
            }
        }
        return EM_VIDEOIN_BACKLIGHT_MODE.EM_BACKLIGHT_UNKNOW;
    }
 
}