dengzedong
2024-12-19 85b2001c0ec2f1adc598db3bf47ad457dcca7074
提交 | 用户 | 时间
149dd0 1 package com.iailab.netsdk.lib.enumeration;
H 2
3 /**
4  * @author 291189
5  * @version 1.0
6  * @description 定期人数清除周期
7  * @date 2022/5/27 9:54
8  */
9 public enum  EM_USER_PASS_DATA_COUNT_CLEAR_PERIOD {
10
11     EM_USER_PASS_DATA_COUNT_CLEAR_PERIOD_UNKNOWN(0,"未知"),                // 未知
12     EM_USER_PASS_DATA_COUNT_CLEAR_PERIOD_HOUR(1,"按小时"),                    // 按小时
13     EM_USER_PASS_DATA_COUNT_CLEAR_PERIOD_DAILY(2,"按天");                    // 按天, 按照每天00点清除
14
15
16
17     private int value;
18     private String note;
19
20      EM_USER_PASS_DATA_COUNT_CLEAR_PERIOD(int givenValue, String note) {
21         this.value = givenValue;
22         this.note = note;
23     }
24
25     public String getNote() {
26         return note;
27     }
28
29     public int getValue() {
30         return value;
31     }
32
33     public static String getNoteByValue(int givenValue) {
34         for (EM_USER_PASS_DATA_COUNT_CLEAR_PERIOD enumType : EM_USER_PASS_DATA_COUNT_CLEAR_PERIOD.values()) {
35             if (givenValue == enumType.getValue()) {
36                 return enumType.getNote();
37             }
38         }
39         return null;
40     }
41
42     public static int getValueByNote(String givenNote) {
43         for (EM_USER_PASS_DATA_COUNT_CLEAR_PERIOD enumType : EM_USER_PASS_DATA_COUNT_CLEAR_PERIOD.values()) {
44             if (givenNote.equals(enumType.getNote()) ) {
45                 return enumType.getValue();
46             }
47         }
48         return -1;
49     }
50     public static EM_USER_PASS_DATA_COUNT_CLEAR_PERIOD getEnum(int value) {
51         for (EM_USER_PASS_DATA_COUNT_CLEAR_PERIOD e : EM_USER_PASS_DATA_COUNT_CLEAR_PERIOD.values()) {
52             if (e.getValue() == value)
53                 return e;
54         }
55         return EM_USER_PASS_DATA_COUNT_CLEAR_PERIOD.EM_USER_PASS_DATA_COUNT_CLEAR_PERIOD_UNKNOWN;
56     }
57
58 }