- 
 public interface ConstraintForeignKeyReferencesStepNThe step in theConstraintconstruction DSL API that allows for matching aFOREIGN KEYclause with aREFERENCESclause.- Author:
- Lukas Eder
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description ConstraintForeignKeyOnStepreferences(String table)Add aREFERENCESclause to theCONSTRAINT, implicitly referencing the primary key.ConstraintForeignKeyOnStepreferences(String table, String... fields)Add aREFERENCESclause to theCONSTRAINT, referencing a key by column names.ConstraintForeignKeyOnStepreferences(Name table)Add aREFERENCESclause to theCONSTRAINT, implicitly referencing the primary key.ConstraintForeignKeyOnStepreferences(Name table, Name... fields)Add aREFERENCESclause to theCONSTRAINT, referencing a key by column names.ConstraintForeignKeyOnStepreferences(Table<?> table)Add aREFERENCESclause to theCONSTRAINT, implicitly referencing the primary key.ConstraintForeignKeyOnStepreferences(Table<?> table, Field<?>... fields)Add aREFERENCESclause to theCONSTRAINT, referencing a key by column names.
 
- 
- 
- 
Method Detail- 
referencesConstraintForeignKeyOnStep references(String table) Add aREFERENCESclause to theCONSTRAINT, implicitly referencing the primary key.
 - 
referencesConstraintForeignKeyOnStep references(String table, String... fields) Add aREFERENCESclause to theCONSTRAINT, referencing a key by column names.
 - 
referencesConstraintForeignKeyOnStep references(Name table) Add aREFERENCESclause to theCONSTRAINT, implicitly referencing the primary key.
 - 
referencesConstraintForeignKeyOnStep references(Name table, Name... fields) Add aREFERENCESclause to theCONSTRAINT, referencing a key by column names.
 - 
referencesConstraintForeignKeyOnStep references(Table<?> table) Add aREFERENCESclause to theCONSTRAINT, implicitly referencing the primary key.
 - 
referencesConstraintForeignKeyOnStep references(Table<?> table, Field<?>... fields) Add aREFERENCESclause to theCONSTRAINT, referencing a key by column names.
 
- 
 
-