Package org.flywaydb.core.api
Enum CoreMigrationType
- java.lang.Object
-
- java.lang.Enum<CoreMigrationType>
-
- org.flywaydb.core.api.CoreMigrationType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<CoreMigrationType>,org.flywaydb.core.extensibility.MigrationType
public enum CoreMigrationType extends java.lang.Enum<CoreMigrationType> implements org.flywaydb.core.extensibility.MigrationType
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BASELINEBaseline migration.CUSTOMMigrations using custom MigrationResolvers.DELETEDeleted migrationJDBCJDBC Java-based migrations.SCHEMASchema creation migration.SCRIPTScript migrations.SCRIPT_BASELINEDeprecated.Will be removed and replaced with just SCRIPT Script baseline migrations.SQLSQL migrations.UNDO_CUSTOMUndo migrations using custom MigrationResolvers.UNDO_JDBCUndo JDBC java-based migrations.UNDO_SCRIPTUndo Script migrations.UNDO_SQLUndo SQL migrations.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static org.flywaydb.core.extensibility.MigrationTypefromString(java.lang.String migrationType)booleanisBaseline()booleanisSynthetic()booleanisUndo()static CoreMigrationTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static CoreMigrationType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SCHEMA
public static final CoreMigrationType SCHEMA
Schema creation migration.
-
BASELINE
public static final CoreMigrationType BASELINE
Baseline migration.
-
DELETE
public static final CoreMigrationType DELETE
Deleted migration
-
SQL
public static final CoreMigrationType SQL
SQL migrations.
-
UNDO_SQL
public static final CoreMigrationType UNDO_SQL
Undo SQL migrations.
-
JDBC
public static final CoreMigrationType JDBC
JDBC Java-based migrations.
-
UNDO_JDBC
public static final CoreMigrationType UNDO_JDBC
Undo JDBC java-based migrations.
-
SCRIPT
public static final CoreMigrationType SCRIPT
Script migrations.
-
SCRIPT_BASELINE
@Deprecated public static final CoreMigrationType SCRIPT_BASELINE
Deprecated.Will be removed and replaced with just SCRIPT Script baseline migrations.
-
UNDO_SCRIPT
public static final CoreMigrationType UNDO_SCRIPT
Undo Script migrations.
-
CUSTOM
public static final CoreMigrationType CUSTOM
Migrations using custom MigrationResolvers.
-
UNDO_CUSTOM
public static final CoreMigrationType UNDO_CUSTOM
Undo migrations using custom MigrationResolvers.
-
-
Method Detail
-
values
public static CoreMigrationType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (CoreMigrationType c : CoreMigrationType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CoreMigrationType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
fromString
public static org.flywaydb.core.extensibility.MigrationType fromString(java.lang.String migrationType)
-
isSynthetic
public boolean isSynthetic()
- Specified by:
isSyntheticin interfaceorg.flywaydb.core.extensibility.MigrationType- Returns:
- Whether this is a synthetic migration type, which is only ever present in the schema history table, but never discovered by migration resolvers.
-
isUndo
public boolean isUndo()
- Specified by:
isUndoin interfaceorg.flywaydb.core.extensibility.MigrationType- Returns:
- Whether this is an undo migration, which has undone an earlier migration present in the schema history table.
-
isBaseline
public boolean isBaseline()
- Specified by:
isBaselinein interfaceorg.flywaydb.core.extensibility.MigrationType- Returns:
- Whether this is a baseline type
-
-