public static enum BaseConfig.TYPE extends Enum<BaseConfig.TYPE>
| Enum Constant and Description |
|---|
CONTEXT_SERVICE |
MANAGED_EXECUTOR_SERVICE |
MANAGED_SCHEDULED_EXECUTOR_SERVICE |
MANAGED_THREAD_FACTORY |
| Modifier and Type | Method and Description |
|---|---|
static BaseConfig.TYPE |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BaseConfig.TYPE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BaseConfig.TYPE MANAGED_EXECUTOR_SERVICE
public static final BaseConfig.TYPE MANAGED_SCHEDULED_EXECUTOR_SERVICE
public static final BaseConfig.TYPE MANAGED_THREAD_FACTORY
public static final BaseConfig.TYPE CONTEXT_SERVICE
public static BaseConfig.TYPE[] values()
for (BaseConfig.TYPE c : BaseConfig.TYPE.values()) System.out.println(c);
public static BaseConfig.TYPE 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 nullCopyright © 2017. All rights reserved.