public enum Hbm2ddlAuto extends java.lang.Enum<Hbm2ddlAuto>
| Enum Constant and Description | 
|---|
CREATE  | 
CREATE_DROP  | 
CREATE_ONLY  | 
DROP  | 
NONE  | 
UPDATE  | 
VALIDATE  | 
| Modifier and Type | Method and Description | 
|---|---|
java.lang.String | 
toString()  | 
static Hbm2ddlAuto | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static Hbm2ddlAuto[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final Hbm2ddlAuto NONE
public static final Hbm2ddlAuto DROP
public static final Hbm2ddlAuto CREATE
public static final Hbm2ddlAuto CREATE_DROP
public static final Hbm2ddlAuto CREATE_ONLY
public static final Hbm2ddlAuto VALIDATE
public static final Hbm2ddlAuto UPDATE
public static Hbm2ddlAuto[] values()
for (Hbm2ddlAuto c : Hbm2ddlAuto.values()) System.out.println(c);
public static Hbm2ddlAuto 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 toString()
toString in class java.lang.Enum<Hbm2ddlAuto>