我想从它的字符串值(或者可能是任何其他值)中查找一个枚举。我已经尝试了下面的代码,但它不允许在初始化程序中使用静态。有没有简单的方法?
public enum Verbosity {
BRIEF, NORMAL, FULL;
private static Map<String, Verbosity> stringMap = new HashMap<String, Verbosity>();
private Verbosity() {
stringMap.put(this.toString(), this);
}
public static Verbosity getVerbosity(String key) {
return stringMap.get(key);
}
};