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