public interface ConstraintForeignKeyReferencesStepN
The step in the
Constraint
construction DSL API that allows for
matching a FOREIGN KEY
clause with a REFERENCES
clause.- Author:
- Lukas Eder
-
Method Summary
Modifier and TypeMethodDescription@NotNull ConstraintForeignKeyOnStep
references
(String table) Add aREFERENCES
clause to theCONSTRAINT
, implicitly referencing the primary key.@NotNull ConstraintForeignKeyOnStep
references
(String table, String... fields) Add aREFERENCES
clause to theCONSTRAINT
, referencing a key by column names.@NotNull ConstraintForeignKeyOnStep
references
(String table, Collection<? extends String> fields) Add aREFERENCES
clause to theCONSTRAINT
, referencing a key by column names.@NotNull ConstraintForeignKeyOnStep
references
(Name table) Add aREFERENCES
clause to theCONSTRAINT
, implicitly referencing the primary key.@NotNull ConstraintForeignKeyOnStep
references
(Name table, Collection<? extends Name> fields) Add aREFERENCES
clause to theCONSTRAINT
, referencing a key by column names.@NotNull ConstraintForeignKeyOnStep
references
(Name table, Name... fields) Add aREFERENCES
clause to theCONSTRAINT
, referencing a key by column names.@NotNull ConstraintForeignKeyOnStep
references
(Table<?> table) Add aREFERENCES
clause to theCONSTRAINT
, implicitly referencing the primary key.@NotNull ConstraintForeignKeyOnStep
references
(Table<?> table, Collection<? extends Field<?>> fields) Add aREFERENCES
clause to theCONSTRAINT
, referencing a key by column names.@NotNull ConstraintForeignKeyOnStep
references
(Table<?> table, Field<?>... fields) Add aREFERENCES
clause to theCONSTRAINT
, referencing a key by column names.
-
Method Details
-
references
Add aREFERENCES
clause to theCONSTRAINT
, implicitly referencing the primary key. -
references
Add aREFERENCES
clause to theCONSTRAINT
, referencing a key by column names. -
references
@NotNull @Support @NotNull ConstraintForeignKeyOnStep references(String table, Collection<? extends String> fields) Add aREFERENCES
clause to theCONSTRAINT
, referencing a key by column names. -
references
Add aREFERENCES
clause to theCONSTRAINT
, implicitly referencing the primary key. -
references
Add aREFERENCES
clause to theCONSTRAINT
, referencing a key by column names. -
references
@NotNull @Support @NotNull ConstraintForeignKeyOnStep references(Name table, Collection<? extends Name> fields) Add aREFERENCES
clause to theCONSTRAINT
, referencing a key by column names. -
references
Add aREFERENCES
clause to theCONSTRAINT
, implicitly referencing the primary key. -
references
@NotNull @Support @NotNull ConstraintForeignKeyOnStep references(Table<?> table, Field<?>... fields) Add aREFERENCES
clause to theCONSTRAINT
, referencing a key by column names. -
references
@NotNull @Support @NotNull ConstraintForeignKeyOnStep references(Table<?> table, Collection<? extends Field<?>> fields) Add aREFERENCES
clause to theCONSTRAINT
, referencing a key by column names.
-