public enum AsyncOperationResultType extends java.lang.Enum<AsyncOperationResultType> implements ValueEnum
Enum Constant and Description |
---|
CANCELED
The asynchronous operation was canceled.
|
DISABLED
The asynchronous operation is disabled.
|
ERROR
The asynchronous operation encountered an error.
|
SUCCESS
The asynchronous operation completed successfully.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getValue() |
static AsyncOperationResultType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AsyncOperationResultType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AsyncOperationResultType SUCCESS
If this enumerated value is used in a Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "success".
public static final AsyncOperationResultType ERROR
If this enumerated value is used in a Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "error".
public static final AsyncOperationResultType CANCELED
If this enumerated value is used in a Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "canceled".
public static final AsyncOperationResultType DISABLED
If this enumerated value is used in a Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "disabled".
public static AsyncOperationResultType[] values()
for (AsyncOperationResultType c : AsyncOperationResultType.values()) System.out.println(c);
public static AsyncOperationResultType 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