up vote 8 down vote favorite
share [g+] share [fb]

Is there a way to check if an enum value is 'greater/equal' to another value?

I want to check if an error level is 'error or above'.

link|improve this question

68% accept rate
feedback

4 Answers

up vote 11 down vote accepted

All Java enums implements Comparable: http://java.sun.com/javase/6/docs/api/java/lang/Enum.html

You can also use the ordinal method to turn them into ints, then comparison is trivial.

if (ErrorLevel.ERROR.compareTo(someOtherLevel) <= 0) {
  ...
}
link|improve this answer
It's not really an enum, apparently. But it has a method 'isGreaterOrEqual()' – ripper234 Jul 19 '09 at 11:33
1  
@ripper234: Your question says "enum" – Tim Büthe May 27 '11 at 13:48
@Tim - well, I accepted. – ripper234 May 27 '11 at 14:44
feedback

Assuming you've defined them in order of severity, you can compare the ordinals of each value. The ordinal is its position in its enum declaration, where the initial constant is assigned an ordinal of zero.

You get the ordinal by calling the ordinal() method of the value.

link|improve this answer
feedback

I want to check if an error level is 'error or above'.

Such an enum should have a level associated with it. So to find equals or greater you should compare the levels.

Using ordinal relies on the order the enum values appear. If you rely on this you should document it otherwise such a dependency can lead to brittle code.

link|improve this answer
feedback

Another option would be

enum Blah {
 A(false), B(false), C(true);
 private final boolean isError;
 Blah(boolean isErr) {isError = isErr;}
 public boolean isError() { return isError; }
}

From your question, I'm assuming you're using enum to designate some kind of return value, some of which are error states. This implementation has the advantage of not having to add the new return types in a particular place (and then adjust your test value), but has the disadvantage of needing some extra work in initializing the enum.

Pursuing my assumption a bit further, are error codes something for the user? A debugging tool? If it's the latter, I've found the exception handling system to be pretty alright for Java.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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