public static enum UpgradeTask.TaskType extends Enum<UpgradeTask.TaskType>
Enum Constant and Description |
---|
CANNOT_BE_REVERTED
Defines a task which cannot be reverted once started.
|
MANDATORY_USER_INTERACTION
Defines a critical task which require an imperative user interaction.
|
NEED_USER_INTERACTION
Defines a task which require a standard user interaction.
|
NORMAL
Defines a standard task.
|
TAKE_LONG_TIME_TO_COMPLETE
Defines a task which take a long time to complete.
|
Modifier and Type | Method and Description |
---|---|
static UpgradeTask.TaskType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UpgradeTask.TaskType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UpgradeTask.TaskType NORMAL
public static final UpgradeTask.TaskType NEED_USER_INTERACTION
public static final UpgradeTask.TaskType MANDATORY_USER_INTERACTION
public static final UpgradeTask.TaskType TAKE_LONG_TIME_TO_COMPLETE
public static final UpgradeTask.TaskType CANNOT_BE_REVERTED
public static UpgradeTask.TaskType[] values()
for (UpgradeTask.TaskType c : UpgradeTask.TaskType.values()) System.out.println(c);
public static UpgradeTask.TaskType 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 © 2010-2015 ForgeRock AS. All Rights Reserved.