dengzedong
2024-12-19 85b2001c0ec2f1adc598db3bf47ad457dcca7074
提交 | 用户 | 时间
149dd0 1 package com.iailab.netsdk.lib.enumeration;
H 2
3 /**
4  * 红外亮度
5  */
6 public enum EM_INFRARED_LIGHT_LEVEL {
7
8     EM_INFRARED_LIGHT_LEVEL_UNKNOWN(0, "未知"),
9     EM_INFRARED_LIGHT_LEVEL_HIGH(1, "高"),
10     EM_INFRARED_LIGHT_LEVEL_MEDIUM(2, "中"),
11     EM_INFRARED_LIGHT_LEVEL_LOW(3, "低");
12
13     private final int value;
14     private final String note;
15
16     EM_INFRARED_LIGHT_LEVEL(int givenValue, String note) {
17         this.value = givenValue;
18         this.note = note;
19     }
20
21     public String getNote() {
22         return note;
23     }
24
25     public int getValue() {
26         return value;
27     }
28
29     public static String getNoteByValue(int givenValue) {
30         for (EM_INFRARED_LIGHT_LEVEL enumType : EM_INFRARED_LIGHT_LEVEL.values()) {
31             if (givenValue == enumType.getValue()) {
32                 return enumType.getNote();
33             }
34         }
35         return null;
36     }
37
38     public static int getValueByNote(String givenNote) {
39         for (EM_INFRARED_LIGHT_LEVEL enumType : EM_INFRARED_LIGHT_LEVEL.values()) {
40             if (givenNote.equals(enumType.getNote())) {
41                 return enumType.getValue();
42             }
43         }
44         return -1;
45     }
46
47     public static EM_INFRARED_LIGHT_LEVEL getEnum(int value) {
48         for (EM_INFRARED_LIGHT_LEVEL e : EM_INFRARED_LIGHT_LEVEL.values()) {
49             if (e.getValue() == value)
50                 return e;
51         }
52         return EM_INFRARED_LIGHT_LEVEL.EM_INFRARED_LIGHT_LEVEL_UNKNOWN;
53     }
54
55 }