public static enum HibernateProperties.Hbm2DllAuto extends java.lang.Enum<HibernateProperties.Hbm2DllAuto>
| Enum Constant and Description |
|---|
CREATE
Drop the schema and recreate it on SessionFactory startup.
|
CREATE_DROP
Drop the schema and recreate it on SessionFactory startup.
|
NONE
Do not attempt to update nor validate the schema.
|
UPDATE
Update (alter) the schema on SessionFactory startup.
|
VALIDATE
Validate the schema on SessionFactory startup.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getAsString() |
static HibernateProperties.Hbm2DllAuto |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HibernateProperties.Hbm2DllAuto[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HibernateProperties.Hbm2DllAuto CREATE
public static final HibernateProperties.Hbm2DllAuto CREATE_DROP
public static final HibernateProperties.Hbm2DllAuto UPDATE
public static final HibernateProperties.Hbm2DllAuto VALIDATE
public static final HibernateProperties.Hbm2DllAuto NONE
public static HibernateProperties.Hbm2DllAuto[] values()
for (HibernateProperties.Hbm2DllAuto c : HibernateProperties.Hbm2DllAuto.values()) System.out.println(c);
public static HibernateProperties.Hbm2DllAuto valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getAsString()