public static enum AsyncHandler.State extends java.lang.Enum<AsyncHandler.State>
Enum Constant and Description |
---|
ABORT
Stop the processing.
|
CONTINUE
Continue the processing
|
Modifier and Type | Method and Description |
---|---|
static AsyncHandler.State |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AsyncHandler.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AsyncHandler.State ABORT
public static final AsyncHandler.State CONTINUE
public static AsyncHandler.State[] values()
for (AsyncHandler.State c : AsyncHandler.State.values()) System.out.println(c);
public static AsyncHandler.State 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 nullCopyright © 2017. All Rights Reserved.