public static enum EventHandler.Priority extends Enum<EventHandler.Priority>
| Enum Constant and Description |
|---|
EARLY |
LATE |
NORMAL |
VERY_EARLY |
VERY_LATE |
| Modifier and Type | Method and Description |
|---|---|
static EventHandler.Priority |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EventHandler.Priority[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventHandler.Priority VERY_EARLY
public static final EventHandler.Priority EARLY
public static final EventHandler.Priority NORMAL
public static final EventHandler.Priority LATE
public static final EventHandler.Priority VERY_LATE
public static EventHandler.Priority[] values()
for (EventHandler.Priority c : EventHandler.Priority.values()) System.out.println(c);
public static EventHandler.Priority 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 © 2010-2014. All Rights Reserved.