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
package com.iailab.netsdk.lib.enumeration;
 
/**
 * @author 260611
 * @description 是否支持以图搜图
 * @origin autoTool
 * @date 2023/07/31 09:25:34
 */
public enum EM_SUPPORT_SEARCH_BY_PIC {
    /**
     * 未知, IVSS, NVR, DVR大概率支持目标以图搜图,IPC-FR不支持
     */
    EM_SUPPORT_SEARCH_BY_PIC_UNKNOWN(0,"未知, IVSS, NVR, DVR大概率支持目标以图搜图,IPC-FR不支持"),
    /**
     * 不支持
     */
    EM_SUPPORT_SEARCH_BY_PIC_UNSUPPORT(1,"不支持"),
    /**
     * 支持
     */
    EM_SUPPORT_SEARCH_BY_PIC_SUPPORT(2,"支持");
 
    private int value;
 
    private String note;
 
    public String getNote() {
        return note;
    }
 
    public int getValue() {
        return value;
    }
 
    EM_SUPPORT_SEARCH_BY_PIC(int givenValue, String note) {
        this.value = givenValue;
        this.note = note;
    }
 
    public static String getNoteByValue(int givenValue) {
        for (EM_SUPPORT_SEARCH_BY_PIC enumType : EM_SUPPORT_SEARCH_BY_PIC.values()) {
            if (givenValue == enumType.getValue()) {
                return enumType.getNote();
            }
        }
        return null;
    }
 
    public static int getValueByNote(String givenNote) {
        for (EM_SUPPORT_SEARCH_BY_PIC enumType : EM_SUPPORT_SEARCH_BY_PIC.values()) {
            if (givenNote.equals(enumType.getNote())) {
                return enumType.getValue();
            }
        }
        return -1;
    }
 
    public static EM_SUPPORT_SEARCH_BY_PIC getEnum(int value) {
        for (EM_SUPPORT_SEARCH_BY_PIC e : EM_SUPPORT_SEARCH_BY_PIC.values()) {
            if (e.getValue() == value) {
                return e;
            }
        }
        return EM_SUPPORT_SEARCH_BY_PIC.EM_SUPPORT_SEARCH_BY_PIC_UNKNOWN;
    }
 
}