public enum EventPriority extends Enum<EventPriority>
| Enum Constant and Description |
|---|
HIGH |
HIGHEST |
LOW |
LOWEST |
MONITOR |
NORMAL |
| 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 MONITOR
public static final EventPriority HIGHEST
public static final EventPriority HIGH
public static final EventPriority NORMAL
public static final EventPriority LOW
public static final EventPriority LOWEST
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 nullCopyright © 2020. All rights reserved.