public enum ExecutionMode extends Enum<ExecutionMode>
| Enum Constant and Description |
|---|
AVERAGING
This option assumes data stored on multiple shards at the same time
|
MANAGED
This option means data storage is controlled by application, and out of VoidParameterServer control
|
SHARDED
This option assumes data (parameters) are split over multiple hosts
|
| Modifier and Type | Method and Description |
|---|---|
static ExecutionMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExecutionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExecutionMode SHARDED
public static final ExecutionMode AVERAGING
public static final ExecutionMode MANAGED
public static ExecutionMode[] values()
for (ExecutionMode c : ExecutionMode.values()) System.out.println(c);
public static ExecutionMode 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.