public enum MigrationExecutionMode extends java.lang.Enum<MigrationExecutionMode>
This applies only to a single read, not multiple reads using the same migration.
Enum Constant and Description |
---|
PARALLEL
Start reads in parallel and wait for them to both finish.
|
SERIAL
Execute one read fully before executing another read.
|
Modifier and Type | Method and Description |
---|---|
static MigrationExecutionMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MigrationExecutionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MigrationExecutionMode SERIAL
public static final MigrationExecutionMode PARALLEL
public static MigrationExecutionMode[] values()
for (MigrationExecutionMode c : MigrationExecutionMode.values()) System.out.println(c);
public static MigrationExecutionMode valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null