public static enum EventStatus.Status extends Enum<EventStatus.Status>
| Enum Constant and Description |
|---|
COMPLETED |
FAILED |
NOT_FOUND |
PAUSED |
RUNNING |
TERMINATED |
TIMED_OUT |
| Modifier and Type | Method and Description |
|---|---|
static EventStatus.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EventStatus.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventStatus.Status RUNNING
public static final EventStatus.Status COMPLETED
public static final EventStatus.Status FAILED
public static final EventStatus.Status TIMED_OUT
public static final EventStatus.Status TERMINATED
public static final EventStatus.Status PAUSED
public static final EventStatus.Status NOT_FOUND
public static EventStatus.Status[] values()
for (EventStatus.Status c : EventStatus.Status.values()) System.out.println(c);
public static EventStatus.Status 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 nullCopyright © 2021. All Rights Reserved.