Package net.sf.basedb.core.hibernate
Enum Class SchemaGenerator.Mode
- All Implemented Interfaces:
Serializable
,Comparable<SchemaGenerator.Mode>
,Constable
- Enclosing class:
- SchemaGenerator
The installation mode.
- Since:
- 3.1
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Field Summary
Modifier and TypeFieldDescriptionprivate final boolean
private final boolean
-
Constructor Summary
ModifierConstructorDescriptionprivate
Mode
(boolean requireEmptyDatabase, boolean verifySchemaVersion) -
Method Summary
Modifier and TypeMethodDescriptionboolean
Does this installation mode require an empty database or not?static SchemaGenerator.Mode
Returns the enum constant of this class with the specified name.static SchemaGenerator.Mode[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.boolean
Does this installation mode require a check against the schema version of the intalled database or not?
-
Enum Constant Details
-
INSTALL
Creating a fresh installation. -
UPDATE
Updating an existing installation.
-
-
Field Details
-
requireEmptyDatabase
private final boolean requireEmptyDatabase -
verifySchemaVersion
private final boolean verifySchemaVersion
-
-
Constructor Details
-
Mode
private Mode(boolean requireEmptyDatabase, boolean verifySchemaVersion)
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
requireEmptyDatabase
public boolean requireEmptyDatabase()Does this installation mode require an empty database or not? -
verifySchemaVersion
public boolean verifySchemaVersion()Does this installation mode require a check against the schema version of the intalled database or not?
-