public static enum EventExecution.Status extends java.lang.Enum<EventExecution.Status>
Enum Constant and Description |
---|
COMPLETED |
FAILED |
IN_PROGRESS |
SKIPPED |
Modifier and Type | Method and Description |
---|---|
static EventExecution.Status |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EventExecution.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventExecution.Status IN_PROGRESS
public static final EventExecution.Status COMPLETED
public static final EventExecution.Status FAILED
public static final EventExecution.Status SKIPPED
public static EventExecution.Status[] values()
for (EventExecution.Status c : EventExecution.Status.values()) System.out.println(c);
public static EventExecution.Status 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