public enum RunStates extends Enum<RunStates>
Enum Constant and Description |
---|
BEING_JUDGED
Being judged.
|
BEING_RE_JUDGED
Being re-judged
|
JUDGED
Judgment complete.
|
NEW
Newly submitted run
|
UNKNOWN
Undefined/unknown
|
Modifier and Type | Method and Description |
---|---|
static RunStates |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RunStates[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RunStates UNKNOWN
public static final RunStates NEW
public static final RunStates BEING_JUDGED
public static final RunStates BEING_RE_JUDGED
public static final RunStates JUDGED
public static RunStates[] values()
for (RunStates c : RunStates.values()) System.out.println(c);
public static RunStates valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null