Interface ForeignKeyInformation
-
- All Known Implementing Classes:
ForeignKeyInformationImpl
public interface ForeignKeyInformation
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
ForeignKeyInformation.ColumnReferenceMapping
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Iterable<ForeignKeyInformation.ColumnReferenceMapping>
getColumnReferenceMappings()
Get the column mappings that define the reference.Identifier
getForeignKeyIdentifier()
Obtain the identifier for this FK.
-
-
-
Method Detail
-
getForeignKeyIdentifier
Identifier getForeignKeyIdentifier()
Obtain the identifier for this FK.- Returns:
- The FK identifier.
-
getColumnReferenceMappings
Iterable<ForeignKeyInformation.ColumnReferenceMapping> getColumnReferenceMappings()
Get the column mappings that define the reference. Returned in sequential order.- Returns:
- The sequential column reference mappings.
-
-