public enum FailedDependencyAction extends Enum<FailedDependencyAction>
Enum Constant and Description |
---|
CANCEL
The action that indicates that the dependent task should be canceled.
|
DISABLE
The action that indicates that the dependent task should be disabled so that an administrator will have to
re-enable it before it can start.
|
PROCESS
The action that indicates that the dependent task should be processed anyway.
|
Modifier and Type | Method and Description |
---|---|
static FailedDependencyAction |
defaultValue()
Returns the default action.
|
static FailedDependencyAction |
fromString(String s)
Retrieves the failed dependency action that corresponds to the provided string value.
|
LocalizableMessage |
getDisplayName()
Gets the display name of this action.
|
static FailedDependencyAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FailedDependencyAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FailedDependencyAction PROCESS
public static final FailedDependencyAction CANCEL
public static final FailedDependencyAction DISABLE
public static FailedDependencyAction[] values()
for (FailedDependencyAction c : FailedDependencyAction.values()) System.out.println(c);
public static FailedDependencyAction 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 nullpublic static FailedDependencyAction defaultValue()
public static FailedDependencyAction fromString(String s)
s
- The string value for which to retrieve the corresponding failed dependency action.null
if none could be associated with the
provided string.public LocalizableMessage getDisplayName()
Copyright 2010-2022 ForgeRock AS.