public static enum EventDone.StatusCode extends java.lang.Enum<EventDone.StatusCode>
Enum Constant and Description |
---|
CANCELLED |
FAILED |
KILLED |
OK |
UNDEFINED |
Modifier and Type | Method and Description |
---|---|
static EventDone.StatusCode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EventDone.StatusCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventDone.StatusCode UNDEFINED
public static final EventDone.StatusCode OK
public static final EventDone.StatusCode FAILED
public static final EventDone.StatusCode CANCELLED
public static final EventDone.StatusCode KILLED
public static EventDone.StatusCode[] values()
for (EventDone.StatusCode c : EventDone.StatusCode.values()) System.out.println(c);
public static EventDone.StatusCode valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is null