public enum ActionState extends java.lang.Enum<ActionState>
Enum Constant and Description |
---|
ACTIVE
active
|
CANCELED
canceled
|
DONE
done
|
FAILED
failed
|
NONE
none
|
NOT_SUPPORTED
not Supported
|
PENDING
pending
|
UNEXPECTED_VALUE
For ActionState values that were not expected from the service
|
Modifier and Type | Method and Description |
---|---|
static ActionState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ActionState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ActionState NONE
public static final ActionState PENDING
public static final ActionState CANCELED
public static final ActionState ACTIVE
public static final ActionState DONE
public static final ActionState FAILED
public static final ActionState NOT_SUPPORTED
public static final ActionState UNEXPECTED_VALUE
public static ActionState[] values()
for (ActionState c : ActionState.values()) System.out.println(c);
public static ActionState 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