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
81
82
83
package com.netsdk.lib.enumeration;
 
/**
 * 热成像测温点报警结果值类型
 */
public enum NET_RADIOMETRY_RESULT {
 
    /**
     * 未知
     */
    NET_RADIOMETRY_RESULT_UNKNOWN(0, "未知"),
    /**
     * 具体值
     */
    NET_RADIOMETRY_RESULT_VAL(1, "具体值"),
    /**
     * 最大
     */
    NET_RADIOMETRY_RESULT_MAX(2, "最大"),
    /**
     * 最小
     */
    NET_RADIOMETRY_RESULT_MIN(3, "最小"),
    /**
     * 平均
     */
    NET_RADIOMETRY_RESULT_AVR(4, "平均"),
    /**
     * 标准
     */
    NET_RADIOMETRY_RESULT_STD(5, "标准"),
    /**
     * 中间
     */
    NET_RADIOMETRY_RESULT_MID(6, "中间"),
    /**
     * ISO
     */
    NET_RADIOMETRY_RESULT_ISO(7, "ISO"),
    /**
     * 温差
     */
    NET_RADIOMETRY_RESULT_DIFF(8, "温差"),
    /**
     * 斜率
     */
    NET_RADIOMETRY_RESULT_SLOPE(9, "斜率");
 
    private int value;
    private String note;
 
    NET_RADIOMETRY_RESULT(int givenValue, String note) {
        this.value = givenValue;
        this.note = note;
    }
 
    public String getNote() {
        return note;
    }
 
    public int getValue() {
        return value;
    }
 
    public static String getNoteByValue(int givenValue) {
        for (NET_RADIOMETRY_RESULT enumType : NET_RADIOMETRY_RESULT.values()) {
            if (givenValue == enumType.getValue()) {
                return enumType.getNote();
            }
        }
        return null;
    }
 
    public static int getValueByNote(String givenNote) {
        for (NET_RADIOMETRY_RESULT enumType : NET_RADIOMETRY_RESULT.values()) {
            if (givenNote.equals(enumType.getNote())) {
                return enumType.getValue();
            }
        }
        return -1;
    }
 
}