houzhongjian
2024-10-30 a28ca3f36d0ace05966a8c0fac1e4b5fe921f882
提交 | 用户 | 时间
ce910c 1 package com.netsdk.lib.enumeration;
H 2
3
4 /** 
5 * @author 291189
6 * @description  智能任务启动规则 
7 * @date 2022/06/28 16:19:15
8 */
9 public enum EM_ANALYSE_TASK_START_RULE {
10 /**
11 立刻启动
12 */
13 EM_ANALYSE_TASK_START_NOW(0,"立刻启动"),
14 /**
15 稍候手动启动
16 */
17 EM_ANALYSE_TASK_START_LATER(1,"稍候手动启动");
18
19 private int value;
20
21 private String note;
22
23 public String getNote() {
24         return note;
25     }
26
27 public int getValue() {
28         return value;
29     }
30
31 EM_ANALYSE_TASK_START_RULE(int givenValue, String note) {
32         this.value = givenValue;
33         this.note = note;
34     }
35
36 public static String getNoteByValue(int givenValue) {
37         for (EM_ANALYSE_TASK_START_RULE enumType : EM_ANALYSE_TASK_START_RULE.values()) {
38             if (givenValue == enumType.getValue()) {
39                 return enumType.getNote();
40             }
41         }
42         return null;
43     }
44
45 public static int getValueByNote(String givenNote) {
46         for (EM_ANALYSE_TASK_START_RULE enumType : EM_ANALYSE_TASK_START_RULE.values()) {
47             if (givenNote.equals(enumType.getNote())) {
48                 return enumType.getValue();
49             }
50         }
51         return -1;
52     }
53
54 public static EM_ANALYSE_TASK_START_RULE getEnum(int value) {
55         for (EM_ANALYSE_TASK_START_RULE e : EM_ANALYSE_TASK_START_RULE.values()) {
56             if (e.getValue() == value)
57                 return e;
58         }
59         return EM_ANALYSE_TASK_START_RULE.EM_ANALYSE_TASK_START_NOW;
60     }
61
62 }