public enum EnumCountry implements EnumClass<Integer> {
  Ethiopia(1),
  Tanzania(2),
  private Integer id;
  EnumCountry(Integer value) {
    this.id = value;
  }
  public Integer getId() {
    return id;
  }
  @Nullable
  public static EnumCountry fromId(Integer id) {
    for (EnumCountry at : EnumCountry.values()) {
      if (at.getId().equals(id)) {
        return at;
      }
    }
    return null;
  }
}
I have the code like above. How can I get Enum Id using its Enum Name.
 
     
     
     
     
    