Class DdlHelp
java.lang.Object
io.ebeaninternal.dbmigration.ddlgeneration.platform.DdlHelp
public class DdlHelp extends Object
-
Field Summary
Fields Modifier and Type Field Description static StringDROP_COMMENTstatic StringDROP_CONSTRAINTstatic StringDROP_DEFAULTstatic StringDROP_FOREIGN_KEY -
Constructor Summary
Constructors Constructor Description DdlHelp() -
Method Summary
Modifier and Type Method Description static booleanisDropComment(String value)Return true if the default value is the special DROP COMMENT value.static booleanisDropConstraint(String value)Return true if the default value is the special DROP CONSTRAINT value.static booleanisDropDefault(String value)Return true if the default value is the special DROP DEFAULT value.static booleanisDropForeignKey(String value)Return true if the default value is the special DROP FOREIGN KEY value.
-
Field Details
-
DROP_DEFAULT
- See Also:
- Constant Field Values
-
DROP_COMMENT
- See Also:
- Constant Field Values
-
DROP_CONSTRAINT
- See Also:
- Constant Field Values
-
DROP_FOREIGN_KEY
- See Also:
- Constant Field Values
-
-
Constructor Details
-
DdlHelp
public DdlHelp()
-
-
Method Details
-
isDropDefault
Return true if the default value is the special DROP DEFAULT value. -
isDropComment
Return true if the default value is the special DROP COMMENT value. -
isDropConstraint
Return true if the default value is the special DROP CONSTRAINT value. -
isDropForeignKey
Return true if the default value is the special DROP FOREIGN KEY value.
-