Jay
2024-11-08 02722a3f9eca857ce7fffea352e9f7ee692a1b71
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
package com.iailab.netsdk.lib.enumeration;
 
/**
 * @author 251823
 * @description 比对结果
 * @date 2021/08/15
 */
public enum EM_COMPARE_RESULT {
    // 未知
    EM_COMPARE_RESULT_UNKNOWN(-1, "未知"),
    // 成功
    EM_COMPARE_RESULT_SUCCESS(0, "成功"),
    // 其他错误
    EM_COMPARE_RESULT_OTHERERROR(1, "其他错误"),
    // 不在人脸库中
    EM_COMPARE_RESULT_NOTINDATABASE(2, "不在人脸库中"),
    // 超过单日进门次数限制
    EM_COMPARE_RESULT_EXCEED_SINGLE_DAY_ENTER_TIMES(3, "超过单日进门次数限制"),
    // 无进门记录,离开失败
    EM_COMPARE_RESULT_NO_ENTER_RECORD_LEAVE_FAIL(4, "无进门记录,离开失败"),
    // 区域人员已满
    EM_COMPARE_RESULT_AREA_FULL(5, "区域人员已满"),
    // 防反潜验证失败(没有正常出门记录再次进门)
    EM_COMPARE_RESULT_REPEATENTER_CHECK_FAIL(6, "防反潜验证失败(没有正常出门记录再次进门)");
 
    private int value;
    private String note;
 
    private EM_COMPARE_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 (EM_COMPARE_RESULT enumType : EM_COMPARE_RESULT.values()) {
            if (givenValue == enumType.getValue()) {
                return enumType.getNote();
            }
        }
        return null;
    }
 
    public static int getValueByNote(String givenNote) {
        for (EM_COMPARE_RESULT enumType : EM_COMPARE_RESULT.values()) {
            if (givenNote.equals(enumType.getNote())) {
                return enumType.getValue();
            }
        }
        return -2;
    }
 
}