public static enum StatusInfo.State extends Enum<StatusInfo.State>
| Enum Constant and Description |
|---|
FAILURE |
FAILURE_PENDING |
INPROGRESS |
INTERRUPTED |
PENDING |
SUCCESS |
| Modifier and Type | Method and Description |
|---|---|
static StatusInfo.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StatusInfo.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StatusInfo.State PENDING
public static final StatusInfo.State INPROGRESS
public static final StatusInfo.State SUCCESS
public static final StatusInfo.State FAILURE
public static final StatusInfo.State FAILURE_PENDING
public static final StatusInfo.State INTERRUPTED
public static StatusInfo.State[] values()
for (StatusInfo.State c : StatusInfo.State.values()) System.out.println(c);
public static StatusInfo.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 © 2004-2015. All Rights Reserved.