|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<MigrationType>
com.googlecode.flyway.core.api.MigrationType
public enum MigrationType
Type of migration.
| Enum Constant Summary | |
|---|---|
INIT
The type for the default init migration. |
|
JDBC
The type for Jdbc java-based migrations. |
|
SPRING_JDBC
The type for Spring Jdbc java-based migrations. |
|
SQL
The type for sql migrations. |
|
| Method Summary | |
|---|---|
static MigrationType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static MigrationType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final MigrationType INIT
public static final MigrationType SQL
public static final MigrationType JDBC
public static final MigrationType SPRING_JDBC
| Method Detail |
|---|
public static MigrationType[] values()
for (MigrationType c : MigrationType.values()) System.out.println(c);
public static MigrationType valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||