public enum MigrationStep extends java.lang.Enum<MigrationStep>
| Enum Constant and Description |
|---|
POSTMIGRATION_ALWAYS |
POSTMIGRATION_INIT |
POSTMIGRATION_ONCE |
PREMIGRATION_ALWAYS |
PREMIGRATION_INIT |
PREMIGRATION_ONCE |
| Modifier and Type | Method and Description |
|---|---|
static MigrationStep |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MigrationStep[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MigrationStep PREMIGRATION_ALWAYS
public static final MigrationStep PREMIGRATION_ONCE
public static final MigrationStep POSTMIGRATION_ONCE
public static final MigrationStep POSTMIGRATION_ALWAYS
public static final MigrationStep PREMIGRATION_INIT
public static final MigrationStep POSTMIGRATION_INIT
public static MigrationStep[] values()
for (MigrationStep c : MigrationStep.values()) System.out.println(c);
public static MigrationStep 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