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