public enum ActionEventType extends Enum<ActionEventType>
Enum Constant and Description |
---|
ACTION_COMPLETED
Action completed successfully.
|
ACTION_FAILED
Action failed to complete successfully.
|
ACTION_IN_PROGRESS
Action still in progress.
|
ACTION_INIT
Initial state for the Action when triggered.
|
Modifier and Type | Method and Description |
---|---|
static ActionEventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ActionEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ActionEventType ACTION_INIT
public static final ActionEventType ACTION_IN_PROGRESS
public static final ActionEventType ACTION_COMPLETED
public static final ActionEventType ACTION_FAILED
public static ActionEventType[] values()
for (ActionEventType c : ActionEventType.values()) System.out.println(c);
public static ActionEventType 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 © 2014. All rights reserved.