public enum MigrationSerialOrder extends java.lang.Enum<MigrationSerialOrder>
| Enum Constant and Description |
|---|
FIXED
Always execute reads in the same order.
|
RANDOM
Each time a read is performed randomize the order.
|
| Modifier and Type | Method and Description |
|---|---|
static MigrationSerialOrder |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MigrationSerialOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MigrationSerialOrder RANDOM
public static final MigrationSerialOrder FIXED
public static MigrationSerialOrder[] values()
for (MigrationSerialOrder c : MigrationSerialOrder.values()) System.out.println(c);
public static MigrationSerialOrder 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