I have created an Enum to define certain actions. Programming against a external API I am forced to use an Integer to express this action. That's why I have added an integer instance field to my Enum. This should be d'accord with Joshua Bloch's Effective Java, instead of relying on ordinal() or the order of the Enum constants using values()[index].
public enum Action {
START(0),
QUIT(1);
public final int code;
Protocol(int code) {
this.code = code;
}
}
I get an integer value what from the API and now I want to create an Enum value out of it, how can I implement this in the most generic fashion?
Obviously, adding such a factory method, will not work. You cannot instantiate an Enum.
Action valueOf(int what) {
return new Action(what);
}
Of course, I can always make a switch-case statement and add all the possible codes and return the appropriate constant. But I want to avoid defining them in two places at the same time.