|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<PendingOperationState>
to.etc.webapp.pendingoperations.PendingOperationState
public enum PendingOperationState
Enum Constant Summary | |
---|---|
BOOT
Like FAIL the thing has failed miserably and can only be retried after a system restart (missing classes, missing factories) |
|
DONE
Operation finished succesfully. |
|
EXEC
The thingy is currently executing somewhere |
|
FATL
The thing has failed completely and will not be retried. |
|
RTRY
The thingy needs to be RETRIED because it failed. |
Method Summary | |
---|---|
static PendingOperationState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static PendingOperationState[] |
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 PendingOperationState EXEC
public static final PendingOperationState RTRY
public static final PendingOperationState FATL
public static final PendingOperationState BOOT
public static final PendingOperationState DONE
Method Detail |
---|
public static PendingOperationState[] values()
for (PendingOperationState c : PendingOperationState.values()) System.out.println(c);
public static PendingOperationState 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 null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |