| Enum Constant and Description | 
|---|
| FOREIGN_KEYWhether  FOREIGN KEYconstraints should be generated. | 
| PRIMARY_KEYWhether  PRIMARY KEYconstraints should be generated. | 
| SCHEMAWhether  CREATE SCHEMAstatements should be generated. | 
| TABLEWhether  CREATE TABLEstatements should be generated. | 
| UNIQUEWhether  UNIQUEconstraints should be generated. | 
| Modifier and Type | Method and Description | 
|---|---|
| static DDLFlag | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static DDLFlag[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final DDLFlag SCHEMA
CREATE SCHEMA statements should be generated.public static final DDLFlag TABLE
CREATE TABLE statements should be generated.public static final DDLFlag PRIMARY_KEY
PRIMARY KEY constraints should be generated.public static final DDLFlag UNIQUE
UNIQUE constraints should be generated.public static final DDLFlag FOREIGN_KEY
FOREIGN KEY constraints should be generated.public static DDLFlag[] values()
for (DDLFlag c : DDLFlag.values()) System.out.println(c);
public static DDLFlag 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 nullCopyright © 2018. All Rights Reserved.