如果我通过A ...如何获得Apple的价值
public enum Enumtype {
A("Apple"), B("Ball"), C("Cat");
private String value;
private Enumtype(String value) {
this.value = value;
}
}
答案 0 :(得分:1)
你需要在你的枚举中添加一个getter:
public String getValue(){
return this.value;
}