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