public enum EventState extends java.lang.Enum<EventState>
| Enum Constant and Description |
|---|
POST
After the dispatching of what the event is targetting
|
PRE
Before the dispatching of what the event is targetting
|
| Modifier and Type | Method and Description |
|---|---|
static EventState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EventState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventState PRE
public static final EventState POST
public static EventState[] values()
for (EventState c : EventState.values()) System.out.println(c);
public static EventState 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