Uses of Class
com.github.tadukoo.database.mysql.syntax.ForeignKeyConstraint
Packages that use ForeignKeyConstraint
Package
Description
Contains
DatabasePojo
, which can be used to store and
retrieve the pojo values from a Database
Contains syntax elements to help build SQL statements
Contains classes for creating MySQL statements
-
Uses of ForeignKeyConstraint in com.github.tadukoo.database.mysql.pojo
Fields in com.github.tadukoo.database.mysql.pojo with type parameters of type ForeignKeyConstraintModifier and TypeFieldDescriptionprivate final List<ForeignKeyConstraint>
AbstractDatabasePojo.foreignKeys
The List of anyforeign keys
present for this pojoMethods in com.github.tadukoo.database.mysql.pojo that return types with arguments of type ForeignKeyConstraintModifier and TypeMethodDescriptionAbstractDatabasePojo.getForeignKeys()
DatabasePojo.getForeignKeys()
Methods in com.github.tadukoo.database.mysql.pojo with parameters of type ForeignKeyConstraintModifier and TypeMethodDescriptiondefault void
DatabasePojo.addForeignKey
(ForeignKeyConstraint foreignKey) Adds the givenforeign key
to this pojodefault void
DatabasePojo.addSubPojo
(SubPojoDefinition subPojoDef, DatabasePojo subPojo, ForeignKeyConstraint foreignKey) Adds the info for a subPojo using the given parameters -
Uses of ForeignKeyConstraint in com.github.tadukoo.database.mysql.syntax
Methods in com.github.tadukoo.database.mysql.syntax that return ForeignKeyConstraintModifier and TypeMethodDescriptionForeignKeyConstraint.ForeignKeyConstraintBuilder.build()
Builds a newForeignKeyConstraint
using the set parametersForeignKeyConstraint.OptionsOrBuild.build()
Builds a newForeignKeyConstraint
using the set parameters -
Uses of ForeignKeyConstraint in com.github.tadukoo.database.mysql.syntax.statement
Fields in com.github.tadukoo.database.mysql.syntax.statement declared as ForeignKeyConstraintModifier and TypeFieldDescriptionprivate final ForeignKeyConstraint
SQLAlterStatement.foreignKey
Theforeign key
to be added to the tableprivate ForeignKeyConstraint
SQLAlterStatement.SQLAlterStatementBuilder.foreignKey
Theforeign key
to be added to the tableFields in com.github.tadukoo.database.mysql.syntax.statement with type parameters of type ForeignKeyConstraintModifier and TypeFieldDescriptionprivate final List<ForeignKeyConstraint>
SQLCreateStatement.foreignKeys
Theforeign keys
to add to the tableprivate final List<ForeignKeyConstraint>
SQLCreateStatement.SQLCreateStatementBuilder.foreignKeys
Theforeign keys
to add to the tableMethods in com.github.tadukoo.database.mysql.syntax.statement that return ForeignKeyConstraintMethods in com.github.tadukoo.database.mysql.syntax.statement that return types with arguments of type ForeignKeyConstraintMethods in com.github.tadukoo.database.mysql.syntax.statement with parameters of type ForeignKeyConstraintModifier and TypeMethodDescriptionSQLAlterStatement.ColumnDefOrForeignKey.foreignKey
(ForeignKeyConstraint foreignKey) SQLAlterStatement.SQLAlterStatementBuilder.foreignKey
(ForeignKeyConstraint foreignKey) SQLCreateStatement.ForeignKeysOrBuild.foreignKey
(ForeignKeyConstraint foreignKey) SQLCreateStatement.SQLCreateStatementBuilder.foreignKey
(ForeignKeyConstraint foreignKey) Constructors in com.github.tadukoo.database.mysql.syntax.statement with parameters of type ForeignKeyConstraintModifierConstructorDescriptionprivate
SQLAlterStatement
(SQLType type, String tableName, SQLColumnOperation operation, String columnName, ColumnDefinition columnDef, ForeignKeyConstraint foreignKey) Constructs aSQLAlterStatement
using the given parameters