yangys
2024-05-09 014ac34ff2baf657c3236f41fdbf11c9d7d414b4
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
package com.qianwen.smartman.modules.fms.enums;
 
public enum ScheStateEnum {
    WILL_GO(1, "将要去"),
    ARRIVE(2, "到达");
    
    private final Integer type;
    private final String desc;
 
    ScheStateEnum(final Integer type, final String desc) {
        this.type = type;
        this.desc = desc;
    }
 
    public Integer getType() {
        return this.type;
    }
 
    public String getDesc() {
        return this.desc;
    }
 
    public static ScheStateEnum of(Integer type) {
        if (type == null) {
            return null;
        }
        ScheStateEnum[] values = values();
        for (ScheStateEnum typeEnum : values) {
            if (typeEnum.type.equals(type)) {
                return typeEnum;
            }
        }
        return null;
    }
}