public enum ThreadPoolType extends Enum<ThreadPoolType>
| Modifier and Type | Method and Description |
|---|---|
String |
getType() |
static ThreadPoolType |
ofType(String type) |
static ThreadPoolType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ThreadPoolType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ThreadPoolType DIRECT
public static final ThreadPoolType FIXED
public static final ThreadPoolType SCALING
public static ThreadPoolType[] values()
for (ThreadPoolType c : ThreadPoolType.values()) System.out.println(c);
public static ThreadPoolType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static ThreadPoolType ofType(String type)
public String getType()
Copyright © 2022. All rights reserved.