kongzy
2024-07-01 47a751cb301d05276ae5d75145d57b2d090fe4e1
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
package com.nanometer.smartlab.entity.enumtype;
 
import java.util.HashMap;
 
public enum ValidFlag {
    VALID(1, "有效"), INVALID(0, "无效");
    private int key;
 
    private String text;
 
    private ValidFlag(int key, String text) {
        this.key = key;
        this.text = text;
    }
 
    public int getKey() {
        return key;
    }
 
    public String getText() {
        return text;
    }
 
    private static HashMap<Integer,ValidFlag> map = new HashMap<Integer,ValidFlag>();
    static {
        for(ValidFlag d :ValidFlag.values()){
            map.put(d.key, d);
        }
    }
    
    public static ValidFlag parse(Integer index) {
        if(map.containsKey(index)){
            return map.get(index);
        }
        return null;
    }
}