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