vote up 4 vote down star

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?

flag

78% accept rate

3 Answers

vote up 11 vote down check

For consistency I guess... when you see an enum type, you know for a fact that its natural ordering is the order in which the constants are declared.

To workaround this, you can easily create your own Comparator<MyEnum> and use it whenever you need a different ordering:

enum MyEnum
{
    DOG("woof"),
    CAT("meow");

    String sound;    
    MyEnum(String s) { sound = s; }
}

class MyEnumComparator implements Comparator<MyEnum>
{
    public int compare(MyEnum o1, MyEnum o2)
    {
    	return -o1.compareTo(o2); // this flips the order
    	return o1.sound.length() - o2.sound.length(); // this compares length
    }
}

You can use the Comparator directly:

MyEnumComparator c = new MyEnumComparator();
int order = c.compare(MyEnum.CAT, MyEnum.DOG);

or use it in collections or arrays:

NavigableSet<MyEnum> set = new TreeSet<MyEnum>(c);
MyEnum[] array = MyEnum.values();
Arrays.sort(array, c);

Further information:

link|flag
Custom comparators are only really effective when supplying the Enum to a Collection. It doesn't help as much if you want to make a direct comparison. – Martin OConnor Feb 6 at 10:49
Yes, it does. new MyEnumComparator.compare(enum1, enum2). Et voilá. – Bombe Feb 6 at 10:50
@martinoconnor & Bombe: I've incorporated your comments into the answer. Thanks! – Zach Scrivena Feb 6 at 10:58
vote up 5 vote down

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.

link|flag
vote up 0 vote down

If you want to change the natural order of your enum’s elements, change their order in the source code.

link|flag
Yup, that's what I wrote in the original entry :) – neu242 Feb 6 at 10:29
Yes but you don’t really explain why you’d want to override compareTo(). So my conclusion was that you are trying to do Something Bad™ and I was trying to show you a more correct way. – Bombe Feb 6 at 10:32
I don't see why I should have to sort the entries by hand when computers does that much better than me. – neu242 Feb 6 at 10:35
In enumerations it’s assumed that you ordered the entries in that specific way for a reason. If there is no reason you are better off using <enum>.toString().compareTo(). Or maybe something different altogether, like maybe a Set? – Bombe Feb 6 at 10:38
The reason this came up is that I have an Enum with {isocode,countryname}. It was manually sorted on countryname, which works as intended. What if I decide I want to sort on isocode from now on? – neu242 Feb 6 at 10:44
show 2 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.