public static enum ApplicationActionEvent.EventType extends Enum<ApplicationActionEvent.EventType>
| Enum Constant and Description |
|---|
DONE
When action end with succes.
|
FAIL
When action failed.
|
INIT
Before starting action.
|
PROGRESSION_CHANGE
When progression changed.
|
START
When action is started.
|
| Modifier and Type | Method and Description |
|---|---|
static ApplicationActionEvent.EventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ApplicationActionEvent.EventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ApplicationActionEvent.EventType INIT
public static final ApplicationActionEvent.EventType START
public static final ApplicationActionEvent.EventType DONE
public static final ApplicationActionEvent.EventType FAIL
public static final ApplicationActionEvent.EventType PROGRESSION_CHANGE
public static ApplicationActionEvent.EventType[] values()
for (ApplicationActionEvent.EventType c : ApplicationActionEvent.EventType.values()) System.out.println(c);
public static ApplicationActionEvent.EventType 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 © 2008–2018 Code Lutin. All rights reserved.