public static enum Configuration.ExecutionModel extends Enum<Configuration.ExecutionModel>
Enum Constant and Description |
---|
ASYNCHRONOUS |
OPTIMIZED |
SEQUENTIAL |
Modifier and Type | Method and Description |
---|---|
static Configuration.ExecutionModel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Configuration.ExecutionModel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Configuration.ExecutionModel SEQUENTIAL
public static final Configuration.ExecutionModel ASYNCHRONOUS
public static final Configuration.ExecutionModel OPTIMIZED
public static Configuration.ExecutionModel[] values()
for (Configuration.ExecutionModel c : Configuration.ExecutionModel.values()) System.out.println(c);
public static Configuration.ExecutionModel 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 © 2016. All Rights Reserved.