| Enum Constant and Description |
|---|
CONTROL |
DEFAULT |
INITIAL |
INSPECTION |
ROLLBACK |
UNDEPLOY |
UPGRADE |
| Modifier and Type | Method and Description |
|---|---|
static TaskType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TaskType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TaskType INITIAL
public static final TaskType UPGRADE
public static final TaskType UNDEPLOY
public static final TaskType ROLLBACK
public static final TaskType INSPECTION
public static final TaskType CONTROL
public static final TaskType DEFAULT
public static TaskType[] values()
for (TaskType c : TaskType.values()) System.out.println(c);
public static TaskType 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