public enum PendingOperationState extends Enum<PendingOperationState>
| Enum Constant and Description |
|---|
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.
|
| Modifier and Type | Method and Description |
|---|---|
static PendingOperationState |
valueOf(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.
|
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
public static PendingOperationState[] values()
for (PendingOperationState c : PendingOperationState.values()) System.out.println(c);
public static PendingOperationState valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2017 etc.to. All rights reserved.