@Title(value="Executor") public enum ExecutorConf extends Enum<ExecutorConf>
| Enum Constant and Description |
|---|
DEFAULT |
STATISTICS |
| Modifier and Type | Method and Description |
|---|---|
static ExecutorConf |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExecutorConf[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@Path(value="oxalis.executor.default") @DefaultValue(value="50") public static final ExecutorConf DEFAULT
@Path(value="oxalis.executor.statistics") @DefaultValue(value="50") public static final ExecutorConf STATISTICS
public static ExecutorConf[] values()
for (ExecutorConf c : ExecutorConf.values()) System.out.println(c);
public static ExecutorConf 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 © 2022 NorStella. All rights reserved.