public static enum SchemaGenerator.Mode extends Enum<SchemaGenerator.Mode>
Enum Constant and Description |
---|
INSTALL
Creating a fresh installation.
|
UPDATE
Updating an existing installation.
|
Modifier and Type | Field and Description |
---|---|
private boolean |
requireEmptyDatabase |
private boolean |
verifySchemaVersion |
Modifier and Type | Method and Description |
---|---|
boolean |
requireEmptyDatabase()
Does this installation mode require an empty database or not?
|
static SchemaGenerator.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SchemaGenerator.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
boolean |
verifySchemaVersion()
Does this installation mode require a check against the schema version
of the intalled database or not?
|
public static final SchemaGenerator.Mode INSTALL
public static final SchemaGenerator.Mode UPDATE
private final boolean requireEmptyDatabase
private final boolean verifySchemaVersion
public static SchemaGenerator.Mode[] values()
for (SchemaGenerator.Mode c : SchemaGenerator.Mode.values()) System.out.println(c);
public static SchemaGenerator.Mode 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 nullpublic boolean requireEmptyDatabase()
public boolean verifySchemaVersion()