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 : 47040
 * @since : Created in 2020/9/17 16:00
 */
public enum EM_COURSE_STATE {
    /**
     * 未知
     */
    EM_COURSE_STATE_UNKNOWN(0, "未知"),
    /**
     * 未录制
     */
    EM_COURSE_STATE_NOT_RECORD(1, "未录制"),
    /**
     * 录制中
     */
    EM_COURSE_STATE_IN_RECORDING(2, "录制中"),
    /**
     * 已录制
     */
    EM_COURSE_STATE_ALREADY_RECORDED(3, "已录制");
 
    private int value;
    private String note;
 
    EM_COURSE_STATE(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_COURSE_STATE enumType : EM_COURSE_STATE.values()) {
            if (givenValue == enumType.getValue()) {
                return enumType.getNote();
            }
        }
        return null;
    }
 
    public static int getValueByNote(String givenNote) {
        for (EM_COURSE_STATE enumType : EM_COURSE_STATE.values()) {
            if (givenNote.equals(enumType.getNote())) {
                return enumType.getValue();
            }
        }
        return -1;
    }
}