What is the correct way to cast an Int to an enum in Java given the following enum?
public enum MyEnum
{
EnumValue1,
EnumValue2
}
MyEnum enumValue = (MyEnum) x; //Doesn't work???
|
|
|
Try Note that in Java enums actually are classes (and enum values thus are objects) and thus you can't cast an |
|||||||||||||||
|
|
|
|||||||||||
|
|
This not something that is usually done, so I would reconsider. But having said that, the fundamental operations are: int --> enum using EnumType.values()[intNum], and enum --> int using enumInst.ordinal(). However, since any implementation of values() has no choice but to give you a copy of the array (java arrays are never read-only), you would be better served using an EnumMap to cache the enum --> int mapping. |
|||
|
|
|
If you want to give your integer values, you can use a structure like below
|
|||||||||||
|
|
Java enums don't have the same kind of enum-to-int mapping that they do in C++. That said, all enums have a
should work. It's a little nasty and it might be better to not try and convert from |
|||
|
|
|
A good option is to avoid conversion from If that is not possible, I would store |
|||
|
|
|
I cache the values and create a simple static access method:
|
|||
|
|
|
This is the same answer as the doctors but it shows how to eliminate the problem with mutable arrays. If you use this kind of approach because of branch prediction first if will have very little to zero effect and whole code only calls mutable array values() function only once. As both variables are static they will not consume n * memory for every usage of this enumeration too.
|
||||
|
|