private static enum NonstopSync.OperationState extends java.lang.Enum<NonstopSync.OperationState>
Enum Constant and Description |
---|
EXECUTING |
EXECUTION_COMPLETE |
OPERATION_TIMED_OUT |
Modifier and Type | Method and Description |
---|---|
(package private) abstract NonstopSync.OperationState |
executionComplete() |
(package private) boolean |
isExecutionComplete() |
(package private) boolean |
isOperationTimedOut() |
(package private) abstract NonstopSync.OperationState |
operationTimedOut() |
static NonstopSync.OperationState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NonstopSync.OperationState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NonstopSync.OperationState EXECUTING
public static final NonstopSync.OperationState EXECUTION_COMPLETE
public static final NonstopSync.OperationState OPERATION_TIMED_OUT
public static NonstopSync.OperationState[] values()
for (NonstopSync.OperationState c : NonstopSync.OperationState.values()) System.out.println(c);
public static NonstopSync.OperationState 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 nullabstract NonstopSync.OperationState executionComplete()
abstract NonstopSync.OperationState operationTimedOut()
boolean isOperationTimedOut()
boolean isExecutionComplete()