java.lang.Object
com.github.jinahya.database.metadata.bind.Schema
All Implemented Interfaces:
MetadataType, Serializable

@_ParentOf(UDT.class) @_ParentOf(TablePrivilege.class) @_ParentOf(Table.class) @_ParentOf(SuperType.class) @_ParentOf(SuperTable.class) @_ParentOf(Procedure.class) @_ParentOf(Function.class) @_ChildOf(Catalog.class) public class Schema extends Object
A class for binding results of the DatabaseMetaData.getSchemas(java.lang.String, java.lang.String) method.
Author:
Jin Kwon <jinahya_at_gmail.com>
See Also:
  • Field Details

  • Constructor Details

    • Schema

      public Schema()
  • Method Details

    • newVirtualInstance

      public static Schema newVirtualInstance()
      Returns a new instance whose tableCatalog is "" and whose tableSchem is "".
      Returns:
      a new virtual instance.
    • toString

      public String toString()
    • equals

      public boolean equals(Object obj)
    • hashCode

      public int hashCode()
    • getTableCatalog

      public String getTableCatalog()
    • setTableCatalog

      public void setTableCatalog(String tableCatalog)
    • getTableSchem

      public String getTableSchem()
    • setTableSchem

      public void setTableSchem(String tableSchem)
    • getUnmappedValues

      public Map<String,Object> getUnmappedValues()
      Description copied from interface: MetadataType
      Returns a map of unmapped values.
      Specified by:
      getUnmappedValues in interface MetadataType
      Returns:
      a map of unmapped values.