public static enum RequestCoordinator.RequestState extends java.lang.Enum<RequestCoordinator.RequestState>
Enum Constant and Description |
---|
CLEARED |
FAILED |
PAUSED |
RUNNING |
SUCCESS |
Modifier and Type | Method and Description |
---|---|
static RequestCoordinator.RequestState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RequestCoordinator.RequestState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RequestCoordinator.RequestState RUNNING
public static final RequestCoordinator.RequestState PAUSED
public static final RequestCoordinator.RequestState CLEARED
public static final RequestCoordinator.RequestState SUCCESS
public static final RequestCoordinator.RequestState FAILED
public static RequestCoordinator.RequestState[] values()
for (RequestCoordinator.RequestState c : RequestCoordinator.RequestState.values()) System.out.println(c);
public static RequestCoordinator.RequestState 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 null