- java.lang.Object
- 
- java.lang.Enum<DDLFlag>
- 
- org.jooq.DDLFlag
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<DDLFlag>
 
 public enum DDLFlag extends Enum<DDLFlag> - Author:
- Lukas Eder
 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description CHECKWhetherCHECKconstraints should be generated.COMMENTWhetherCOMMENTstatements should be generated.DOMAINWhetherDOMAINstatements should be generated.FOREIGN_KEYWhetherFOREIGN KEYconstraints should be generated.INDEXWhetherINDEXdefinitions should be generated.PRIMARY_KEYWhetherPRIMARY KEYconstraints should be generated.SCHEMAWhetherCREATE SCHEMAstatements should be generated.SEQUENCEWhetherSEQUENCEstatements should be generated.TABLEWhetherCREATE TABLEstatements should be generated.UNIQUEWhetherUNIQUEconstraints should be generated.
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static DDLFlagvalueOf(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.
 
- 
- 
- 
Enum Constant Detail- 
SCHEMApublic static final DDLFlag SCHEMA WhetherCREATE SCHEMAstatements should be generated.
 - 
TABLEpublic static final DDLFlag TABLE WhetherCREATE TABLEstatements should be generated.
 - 
PRIMARY_KEYpublic static final DDLFlag PRIMARY_KEY WhetherPRIMARY KEYconstraints should be generated.
 - 
UNIQUEpublic static final DDLFlag UNIQUE WhetherUNIQUEconstraints should be generated.
 - 
FOREIGN_KEYpublic static final DDLFlag FOREIGN_KEY WhetherFOREIGN KEYconstraints should be generated.
 - 
CHECKpublic static final DDLFlag CHECK WhetherCHECKconstraints should be generated.
 - 
INDEXpublic static final DDLFlag INDEX WhetherINDEXdefinitions should be generated.
 - 
DOMAINpublic static final DDLFlag DOMAIN WhetherDOMAINstatements should be generated.
 - 
SEQUENCEpublic static final DDLFlag SEQUENCE WhetherSEQUENCEstatements should be generated.
 - 
COMMENTpublic static final DDLFlag COMMENT WhetherCOMMENTstatements should be generated.
 
- 
 - 
Method Detail- 
valuespublic static DDLFlag[] values() Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (DDLFlag c : DDLFlag.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static DDLFlag valueOf(String name) Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
- NullPointerException- if the argument is null
 
 
- 
 
-