Class ForeignKeyMetadata


  • public class ForeignKeyMetadata
    extends Object
    The data about a foreign key as read from JDBC Metadata.
    Version:
    $Id: ForeignKeyMetadata.java 1839288 2018-08-27 09:48:33Z tv $
    • Constructor Detail

      • ForeignKeyMetadata

        public ForeignKeyMetadata()
    • Method Detail

      • getReferencedTable

        public String getReferencedTable()
        Returns the name of the referenced (foreign) table.
        Returns:
        the name of the referenced (foreign) table.
      • setReferencedTable

        public void setReferencedTable​(String referencedTable)
        Sets the name of the referenced (foreign) table.
        Parameters:
        referencedTable - the name of the referenced (foreign) table.
      • getForeignKeyName

        public String getForeignKeyName()
        Returns the name of the foreign key.
        Returns:
        the name of the foreign key.
      • setForeignKeyName

        public void setForeignKeyName​(String foreignKeyName)
        Sets the name of the foreign key.
        Parameters:
        foreignKeyName - the name of the foreign key.
      • getLocalColumns

        public List<String> getLocalColumns()
        Returns the names of the local columns. To change the list in this object, the returned list can be modified.
        Returns:
        the names of the local columns.
      • getForeignColumns

        public List<String> getForeignColumns()
        Returns the names of the foreign columns. To change the list in this object, the returned list can be modified.
        Returns:
        the names of the foreign columns.