public static enum AdminCommandState.State extends Enum<AdminCommandState.State>
| Enum Constant and Description |
|---|
COMPLETED |
FAILED_RETRYABLE |
PREPARED |
RECORDED |
REVERTED |
REVERTING |
RUNNING |
RUNNING_RETRYABLE |
| Modifier and Type | Method and Description |
|---|---|
static AdminCommandState.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AdminCommandState.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AdminCommandState.State PREPARED
public static final AdminCommandState.State RUNNING
public static final AdminCommandState.State COMPLETED
public static final AdminCommandState.State RECORDED
public static final AdminCommandState.State RUNNING_RETRYABLE
public static final AdminCommandState.State FAILED_RETRYABLE
public static final AdminCommandState.State REVERTING
public static final AdminCommandState.State REVERTED
public static AdminCommandState.State[] values()
for (AdminCommandState.State c : AdminCommandState.State.values()) System.out.println(c);
public static AdminCommandState.State 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–2020 Eclipse Foundation. All rights reserved.