public enum MigrationStrategy extends Enum<MigrationStrategy>
| Enum Constant and Description |
|---|
COMMENT
|
DEFAULT
|
NAME
|
NAME_AND_TYPE
|
NULL
|
TYPE
|
| Modifier and Type | Method and Description |
|---|---|
static MigrationStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MigrationStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MigrationStrategy NAME
public static final MigrationStrategy TYPE
public static final MigrationStrategy NAME_AND_TYPE
public static final MigrationStrategy COMMENT
public static final MigrationStrategy NULL
public static final MigrationStrategy DEFAULT
public static MigrationStrategy[] values()
for (MigrationStrategy c : MigrationStrategy.values()) System.out.println(c);
public static MigrationStrategy valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2016 Krake Softwaretechnik. All rights reserved.