|
3.2.4: 2013-12-06 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<SchemaGenerator.Mode>
net.sf.basedb.core.hibernate.SchemaGenerator.Mode
public static enum SchemaGenerator.Mode
The installation mode.
Enum Constant Summary | |
---|---|
INSTALL
Creating a fresh installation. |
|
UPDATE
Updating an existing installation. |
Field Summary | |
---|---|
private boolean |
requireEmptyDatabase
|
private boolean |
verifySchemaVersion
|
Method Summary | |
---|---|
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? |
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 SchemaGenerator.Mode INSTALL
public static final SchemaGenerator.Mode UPDATE
Field Detail |
---|
private final boolean requireEmptyDatabase
private final boolean verifySchemaVersion
Method Detail |
---|
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 name
NullPointerException
- if the argument is nullpublic boolean requireEmptyDatabase()
public boolean verifySchemaVersion()
|
3.2.4: 2013-12-06 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |