Package org.hibernate.boot
Enum Class SchemaAutoTooling
- All Implemented Interfaces:
Serializable
,Comparable<SchemaAutoTooling>
,Constable
@Deprecated(since="7.0",
forRemoval=true)
public enum SchemaAutoTooling
extends Enum<SchemaAutoTooling>
Deprecated, for removal: This API element is subject to removal in a future version.
Defines the possible values for "hibernate.hbm2ddl.auto".
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionDeprecated, for removal: This API element is subject to removal in a future version.Drop the schema and recreate it onSessionFactory
startup.Deprecated, for removal: This API element is subject to removal in a future version.Drop the schema and recreate it onSessionFactory
startup.Deprecated, for removal: This API element is subject to removal in a future version.Create the schema onSessionFactory
startup.Deprecated, for removal: This API element is subject to removal in a future version.Drop the schema and don't recreate it.Deprecated, for removal: This API element is subject to removal in a future version.Do not attempt to update nor validate the schema.Deprecated, for removal: This API element is subject to removal in a future version.Update (alter) the schema onSessionFactory
startup.Deprecated, for removal: This API element is subject to removal in a future version.Validate the schema onSessionFactory
startup. -
Method Summary
Modifier and TypeMethodDescriptionDeprecated, for removal: This API element is subject to removal in a future version.static SchemaAutoTooling
Deprecated, for removal: This API element is subject to removal in a future version.static SchemaAutoTooling
Deprecated, for removal: This API element is subject to removal in a future version.Returns the enum constant of this class with the specified name.static SchemaAutoTooling[]
values()
Deprecated, for removal: This API element is subject to removal in a future version.Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
CREATE
Deprecated, for removal: This API element is subject to removal in a future version.Drop the schema and recreate it onSessionFactory
startup. -
CREATE_DROP
Deprecated, for removal: This API element is subject to removal in a future version.Drop the schema and recreate it onSessionFactory
startup. Additionally, drop the schema onSessionFactory
shutdown. -
CREATE_ONLY
Deprecated, for removal: This API element is subject to removal in a future version.Create the schema onSessionFactory
startup. -
DROP
Deprecated, for removal: This API element is subject to removal in a future version.Drop the schema and don't recreate it. -
UPDATE
Deprecated, for removal: This API element is subject to removal in a future version.Update (alter) the schema onSessionFactory
startup. -
VALIDATE
Deprecated, for removal: This API element is subject to removal in a future version.Validate the schema onSessionFactory
startup. -
NONE
Deprecated, for removal: This API element is subject to removal in a future version.Do not attempt to update nor validate the schema.
-
-
Method Details
-
values
Deprecated, for removal: This API element is subject to removal in a future version.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
Deprecated, for removal: This API element is subject to removal in a future version.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
-
externalForm
Deprecated, for removal: This API element is subject to removal in a future version. -
interpret
Deprecated, for removal: This API element is subject to removal in a future version.
-
Action
instead.