public enum EventFiring extends java.lang.Enum<EventFiring>
Enum Constant and Description |
---|
ASYNCHRONOUS
Events will fire asynchronously.
|
SYNCHRONOUS
Events will fire synchronously.
|
Modifier and Type | Method and Description |
---|---|
static EventFiring |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EventFiring[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventFiring ASYNCHRONOUS
The mutating thread does not have to wait for firing to complete.
public static final EventFiring SYNCHRONOUS
The mutating thread will wait for firing to complete.
public static EventFiring[] values()
for (EventFiring c : EventFiring.values()) System.out.println(c);
public static EventFiring 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