public enum ListenerPriority extends java.lang.Enum<ListenerPriority>
Enum Constant and Description |
---|
HIGH |
HIGHEST |
LOW |
LOWEST |
NONE |
NORMAL |
Modifier and Type | Method and Description |
---|---|
static ListenerPriority |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ListenerPriority[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ListenerPriority NONE
public static final ListenerPriority LOWEST
public static final ListenerPriority LOW
public static final ListenerPriority NORMAL
public static final ListenerPriority HIGH
public static final ListenerPriority HIGHEST
public static ListenerPriority[] values()
for (ListenerPriority c : ListenerPriority.values()) System.out.println(c);
public static ListenerPriority 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