The ordinal() method can get the ordinal of a enum instance. How can I set the ordinal for a enum ?
|
You can't set it. It is always the ordinal of the constant definition. See the documentation for Enum.ordinal():
And actually - you should not need to. If you want some integer property, define one. |
|||||
|
|
You can control the ordinal by changing the order of the enum, but you cannot set it explicitly like in
In this situation |
|||||||||||
|
|
From http://download.oracle.com/javase/1.5.0/docs/api/java/lang/Enum.html
If you have
then SUNDAY has an ordinal of 0, MONDAY is 1, and so on... |
|||
|
|
|
The easy answer: just change the order of the constants. The first defined will be 0, the second will be 1, etc. However, this may not be practical if you have constantly changing code, or enums will many many values. You can define a custom method to work around the default ordinal, but MAKE SURE it is well documented to avoid confusion!
|
|||||
|
|
Check out the Java Enum examples and docs
|
|||
|
|