Enum Constant Summary 
Enum Constants 
Whether CHECK constraints should be generated.
 
Whether COMMENT statements should be generated.
 
Whether DOMAIN statements should be generated.
 
Whether FOREIGN KEY constraints should be generated.
 
Whether INDEX definitions should be generated.
 
Whether PRIMARY KEY constraints should be generated.
 
Whether CREATE SCHEMA statements should be generated.
 
Whether SEQUENCE statements should be generated.
 
Whether SYNONYM statements should be generated.
 
Whether CREATE TABLE statements should be generated.
 
Whether TRIGGER statements should be generated.
 
Whether UDT statements should be generated.
 
Whether UNIQUE constraints should be generated.
 
 
 
 
Method Summary 
All Methods Static Methods Concrete Methods 
Returns the enum constant of this class with the specified name.
 
Returns an array containing the constants of this enum class, in
the order they are declared.
 
 
 
 
Methods inherited from class java.lang.Enum  
clone , compareTo , describeConstable , equals , finalize , getDeclaringClass , hashCode , name , ordinal , toString , valueOf  
 
 
 
 
Enum Constant Details 
SCHEMA 
Whether CREATE SCHEMA statements should be generated.
 
 
TABLE 
Whether CREATE TABLE statements should be generated.
 
 
PRIMARY_KEY 
public static final  DDLFlag PRIMARY_KEY Whether PRIMARY KEY constraints should be generated.
 
 
UNIQUE 
Whether UNIQUE constraints should be generated.
 
 
FOREIGN_KEY 
public static final  DDLFlag FOREIGN_KEY Whether FOREIGN KEY constraints should be generated.
 
 
CHECK 
Whether CHECK constraints should be generated.
 
 
INDEX 
Whether INDEX definitions should be generated.
 
 
UDT 
Whether UDT statements should be generated.
 
 
DOMAIN 
Whether DOMAIN statements should be generated.
 
 
SEQUENCE 
public static final  DDLFlag SEQUENCE Whether SEQUENCE statements should be generated.
 
 
 
TRIGGER 
public static final  DDLFlag TRIGGER Whether TRIGGER statements should be generated.
 
 
SYNONYM 
public static final  DDLFlag SYNONYM Whether SYNONYM statements should be generated.
 
 
 
 
 
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 NullPointerException