|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<FailedDependencyAction>
org.opends.server.backends.task.FailedDependencyAction
public enum FailedDependencyAction
This enumeration defines the various ways that a task can behave if it is dependent upon another task and that earlier task is done running but did not complete successfully.
Enum Constant Summary | |
---|---|
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. |
Method Summary | |
---|---|
static FailedDependencyAction |
defaultValue()
Returns the default action. |
static FailedDependencyAction |
fromString(java.lang.String s)
Retrieves the failed dependency action that corresponds to the provided string value. |
Message |
getDisplayName()
Gets the display name of this action. |
static FailedDependencyAction |
valueOf(java.lang.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. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final FailedDependencyAction PROCESS
public static final FailedDependencyAction CANCEL
public static final FailedDependencyAction DISABLE
Method Detail |
---|
public static FailedDependencyAction[] values()
for (FailedDependencyAction c : FailedDependencyAction.values()) System.out.println(c);
public static FailedDependencyAction 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 name
java.lang.NullPointerException
- if the argument is nullpublic static FailedDependencyAction defaultValue()
public static FailedDependencyAction fromString(java.lang.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 Message getDisplayName()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |