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 SummaryModifier and TypeMethodDescriptionreferences(String table) Add aREFERENCESclause to theCONSTRAINT, implicitly referencing the primary key.references(String table, String... fields) Add aREFERENCESclause to theCONSTRAINT, referencing a key by column names.references(String table, Collection<? extends String> fields) Add aREFERENCESclause to theCONSTRAINT, referencing a key by column names.references(Name table) Add aREFERENCESclause to theCONSTRAINT, implicitly referencing the primary key.references(Name table, Collection<? extends Name> fields) Add aREFERENCESclause to theCONSTRAINT, referencing a key by column names.references(Name table, Name... fields) Add aREFERENCESclause to theCONSTRAINT, referencing a key by column names.references(Table<?> table) Add aREFERENCESclause to theCONSTRAINT, implicitly referencing the primary key.references(Table<?> table, Collection<? extends Field<?>> fields) Add aREFERENCESclause to theCONSTRAINT, referencing a key by column names.references(Table<?> table, Field<?>... fields) Add aREFERENCESclause to theCONSTRAINT, referencing a key by column names.
- 
Method Details- 
referencesAdd aREFERENCESclause to theCONSTRAINT, implicitly referencing the primary key.
- 
referencesAdd aREFERENCESclause to theCONSTRAINT, referencing a key by column names.
- 
referencesAdd aREFERENCESclause to theCONSTRAINT, referencing a key by column names.
- 
referencesAdd aREFERENCESclause to theCONSTRAINT, implicitly referencing the primary key.
- 
referencesAdd aREFERENCESclause to theCONSTRAINT, referencing a key by column names.
- 
referencesAdd aREFERENCESclause to theCONSTRAINT, referencing a key by column names.
- 
referencesAdd aREFERENCESclause to theCONSTRAINT, implicitly referencing the primary key.
- 
referencesAdd aREFERENCESclause to theCONSTRAINT, referencing a key by column names.
- 
referencesAdd aREFERENCESclause to theCONSTRAINT, referencing a key by column names.
 
-