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
84
package com.iailab.netsdk.lib.enumeration;
 
 
/**
 * @author 421657
 * @description 任务名称
 * @origin autoTool
 * @date 2023/10/16 19:23:11
 */
public enum EM_PTZ_TASK_NAME {
    /**
     * 未知
     */
    NET_EM_PTZ_TASK_NAME_UNKNOWN(0, "未知"),
    /**
     * 定时任务
     */
    NET_EM_PTZ_TASK_NAME_AUTOMOVEMENT(1, "定时任务"),
    /**
     * 空闲任务
     */
    NET_EM_PTZ_TASK_NAME_IDLEMOTION(2, "空闲任务"),
    /**
     * 开机动作
     */
    NET_EM_PTZ_TASK_NAME_POWERUP(3, "开机动作"),
    /**
     * 云台联动
     */
    NET_EM_PTZ_TASK_NAME_LINK(4, "云台联动"),
    /**
     * 智能
     */
    NET_EM_PTZ_TASK_NAME_INTELIGENCE(5, "智能"),
    /**
     * 手动
     */
    NET_EM_PTZ_TASK_NAME_MANUAL(6, "手动");
 
    private int value;
 
    private String note;
 
    public String getNote() {
        return note;
    }
 
    public int getValue() {
        return value;
    }
 
    EM_PTZ_TASK_NAME(int givenValue, String note) {
        this.value = givenValue;
        this.note = note;
    }
 
    public static String getNoteByValue(int givenValue) {
        for (EM_PTZ_TASK_NAME enumType : EM_PTZ_TASK_NAME.values()) {
            if (givenValue == enumType.getValue()) {
                return enumType.getNote();
            }
        }
        return null;
    }
 
    public static int getValueByNote(String givenNote) {
        for (EM_PTZ_TASK_NAME enumType : EM_PTZ_TASK_NAME.values()) {
            if (givenNote.equals(enumType.getNote())) {
                return enumType.getValue();
            }
        }
        return -1;
    }
 
    public static EM_PTZ_TASK_NAME getEnum(int value) {
        for (EM_PTZ_TASK_NAME e : EM_PTZ_TASK_NAME.values()) {
            if (e.getValue() == value) {
                return e;
            }
        }
        return EM_PTZ_TASK_NAME.NET_EM_PTZ_TASK_NAME_UNKNOWN;
    }
 
}