Uses of Interface
org.jooq.ConstraintForeignKeyReferencesStep1
-
Packages that use ConstraintForeignKeyReferencesStep1 Package Description org.jooq Theorg.jooq
package contains jOOQ's public API.org.jooq.impl Theorg.jooq.impl
package contains jOOQ's implementation classes. -
-
Uses of ConstraintForeignKeyReferencesStep1 in org.jooq
Methods in org.jooq that return ConstraintForeignKeyReferencesStep1 Modifier and Type Method Description ConstraintForeignKeyReferencesStep1<?>
ConstraintTypeStep. foreignKey(String field1)
Add aFOREIGN KEY
clause to theCONSTRAINT
.<T1> ConstraintForeignKeyReferencesStep1<T1>
ConstraintTypeStep. foreignKey(Field<T1> field1)
Add aFOREIGN KEY
clause to theCONSTRAINT
.ConstraintForeignKeyReferencesStep1<?>
ConstraintTypeStep. foreignKey(Name field1)
Add aFOREIGN KEY
clause to theCONSTRAINT
. -
Uses of ConstraintForeignKeyReferencesStep1 in org.jooq.impl
Methods in org.jooq.impl that return ConstraintForeignKeyReferencesStep1 Modifier and Type Method Description static ConstraintForeignKeyReferencesStep1<?>
DSL. foreignKey(String field1)
Add an unnamed (system named)FOREIGN KEY
clause to theCONSTRAINT
.static <T1> ConstraintForeignKeyReferencesStep1<T1>
DSL. foreignKey(Field<T1> field1)
Add an unnamed (system named)FOREIGN KEY
clause to theCONSTRAINT
.static ConstraintForeignKeyReferencesStep1<?>
DSL. foreignKey(Name field1)
Add an unnamed (system named)FOREIGN KEY
clause to theCONSTRAINT
.
-