Enum Constant and Description |
---|
Async
Default behaviour, calls event directly (same thread, not synchronized).
|
Sync
Synchronizes event calls.
|
Threaded
Creates a separate, new thread to call the event.
|
Modifier and Type | Method and Description |
---|---|
static Threading |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Threading[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Threading Sync
public static final Threading Async
public static final Threading Threaded
public static Threading[] values()
for (Threading c : Threading.values()) System.out.println(c);
public static Threading 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