如何从java中获取Enum的值

时间:2016-03-28 23:02:22

标签: java enums


如果我通过A ...如何获得Apple的价值

public enum Enumtype {
  A("Apple"), B("Ball"), C("Cat");

  private String value;

  private Enumtype(String value) {
      this.value = value;
  }
}

1 个答案:

答案 0 :(得分:1)

你需要在你的枚举中添加一个getter:

public String getValue(){
    return this.value;
}