public enum EventPriority extends Enum<EventPriority>
Enum Constant and Description |
---|
BASIC
Default value.
|
POST
Last event called.
|
PRE
The first event called.
|
Modifier and Type | Method and Description |
---|---|
static EventPriority |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EventPriority[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventPriority PRE
public static final EventPriority BASIC
public static final EventPriority POST
public static EventPriority[] values()
for (EventPriority c : EventPriority.values()) System.out.println(c);
public static EventPriority 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 null