public enum ListenerType extends Enum<ListenerType>
| Enum Constant and Description |
|---|
DELAYED
A Delayed listener gets called only after an event is posted at the time that the event is read by the separate event thread.
|
IMMEDIATELY |
LOCALLY |
| Modifier and Type | Method and Description |
|---|---|
static ListenerType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ListenerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ListenerType DELAYED
public static final ListenerType IMMEDIATELY
public static final ListenerType LOCALLY
public static ListenerType[] values()
for (ListenerType c : ListenerType.values()) System.out.println(c);
public static ListenerType 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 © 2017 etc.to. All rights reserved.