An Enum in Java implements the Comparable interface. It would have been nice to override Comparable's compareTo method, but here it's marked as final. The default natural order on Enum's compareTo is the listed order. Does anyone know why a Java Enum has this restriction?
|
|
|
|
|
|
|
For consistency I guess... when you see an To workaround this, you can easily create your own
You can use the
or use it in collections or arrays:
Further information: |
||||||
|
|
|
Enumeration values are precisely ordered logically according to the order they are declared. This is part of the Java language specification. Therefore it follows that enumeration values can only be compared if they are members of the same Enum. The specification wants to further guarantee that the comparable order as returned by compareTo() is the same as the order in which the values were declared. This is the very definition of an enumeration. |
||
|
|
|
|
If you want to change the natural order of your enum’s elements, change their order in the source code. |
||||||||||
|
