public static enum SchedulerProperties.SchedulerType extends Enum<SchedulerProperties.SchedulerType>
| Enum Constant and Description |
|---|
ELASTIC |
EXECUTOR |
IMMEDIATE |
NEW_ELASTIC |
NEW_PARALLEL |
NEW_SINGLE |
PARALLEL |
SINGLE |
THREAD_POOL |
| Modifier and Type | Method and Description |
|---|---|
static SchedulerProperties.SchedulerType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SchedulerProperties.SchedulerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SchedulerProperties.SchedulerType ELASTIC
public static final SchedulerProperties.SchedulerType PARALLEL
public static final SchedulerProperties.SchedulerType SINGLE
public static final SchedulerProperties.SchedulerType IMMEDIATE
public static final SchedulerProperties.SchedulerType NEW_ELASTIC
public static final SchedulerProperties.SchedulerType NEW_PARALLEL
public static final SchedulerProperties.SchedulerType NEW_SINGLE
public static final SchedulerProperties.SchedulerType EXECUTOR
public static final SchedulerProperties.SchedulerType THREAD_POOL
public static SchedulerProperties.SchedulerType[] values()
for (SchedulerProperties.SchedulerType c : SchedulerProperties.SchedulerType.values()) System.out.println(c);
public static SchedulerProperties.SchedulerType 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 © 2021. All rights reserved.