Enum Class DDLFlag
- All Implemented Interfaces:
Serializable, Comparable<DDLFlag>, Constable
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionWhetherCHECKconstraints should be generated.WhetherCOMMENTstatements should be generated.WhetherDOMAINstatements should be generated.WhetherFOREIGN KEYconstraints should be generated.WhetherINDEXdefinitions should be generated.WhetherPRIMARY KEYconstraints should be generated.WhetherCREATE SCHEMAstatements should be generated.WhetherSEQUENCEstatements should be generated.WhetherSYNONYMstatements should be generated.WhetherCREATE TABLEstatements should be generated.WhetherTRIGGERstatements should be generated.WhetherUDTstatements should be generated.WhetherUNIQUEconstraints should be generated. -
Method Summary
-
Enum Constant Details
-
SCHEMA
WhetherCREATE SCHEMAstatements should be generated. -
TABLE
WhetherCREATE TABLEstatements should be generated. -
PRIMARY_KEY
WhetherPRIMARY KEYconstraints should be generated. -
UNIQUE
WhetherUNIQUEconstraints should be generated. -
FOREIGN_KEY
WhetherFOREIGN KEYconstraints should be generated. -
CHECK
WhetherCHECKconstraints should be generated. -
INDEX
WhetherINDEXdefinitions should be generated. -
UDT
WhetherUDTstatements should be generated. -
DOMAIN
WhetherDOMAINstatements should be generated. -
SEQUENCE
WhetherSEQUENCEstatements should be generated. -
COMMENT
WhetherCOMMENTstatements should be generated. -
TRIGGER
WhetherTRIGGERstatements should be generated. -
SYNONYM
WhetherSYNONYMstatements 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- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-