public enum ParallelStrategyEnum extends Enum<ParallelStrategyEnum>
| Enum Constant and Description |
|---|
ALL |
ANY |
PERCENTAGE |
SPECIFY |
| Modifier and Type | Method and Description |
|---|---|
Class<? extends ParallelStrategyExecutor> |
getClazz() |
String |
getDescription() |
String |
getStrategyType() |
void |
setClazz(Class<? extends ParallelStrategyExecutor> clazz) |
void |
setDescription(String description) |
void |
setStrategyType(String strategyType) |
static ParallelStrategyEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ParallelStrategyEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParallelStrategyEnum ANY
public static final ParallelStrategyEnum ALL
public static final ParallelStrategyEnum SPECIFY
public static final ParallelStrategyEnum PERCENTAGE
public static ParallelStrategyEnum[] values()
for (ParallelStrategyEnum c : ParallelStrategyEnum.values()) System.out.println(c);
public static ParallelStrategyEnum 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 String getStrategyType()
public void setStrategyType(String strategyType)
public String getDescription()
public void setDescription(String description)
public Class<? extends ParallelStrategyExecutor> getClazz()
public void setClazz(Class<? extends ParallelStrategyExecutor> clazz)
Copyright © 2025. All rights reserved.