Module org.jooq

Class Table

  • All Implemented Interfaces:
    Serializable, XMLAppendable

    public class Table
    extends Object
    implements Serializable, XMLAppendable

    Java class for Table complex type.

    The following schema fragment specifies the expected content contained within this class.

     <complexType name="Table">
       <complexContent>
         <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
           <all>
             <element name="table_catalog" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
             <element name="table_schema" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
             <element name="table_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
             <element name="comment" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
           </all>
         </restriction>
       </complexContent>
     </complexType>
     
    See Also:
    Serialized Form
    • Field Detail

      • tableCatalog

        protected String tableCatalog
      • tableSchema

        protected String tableSchema
      • tableName

        protected String tableName
      • comment

        protected String comment
    • Constructor Detail

      • Table

        public Table()
    • Method Detail

      • getTableCatalog

        public String getTableCatalog()
        Gets the value of the tableCatalog property.
        Returns:
        possible object is String
      • setTableCatalog

        public void setTableCatalog​(String value)
        Sets the value of the tableCatalog property.
        Parameters:
        value - allowed object is String
      • getTableSchema

        public String getTableSchema()
        Gets the value of the tableSchema property.
        Returns:
        possible object is String
      • setTableSchema

        public void setTableSchema​(String value)
        Sets the value of the tableSchema property.
        Parameters:
        value - allowed object is String
      • getTableName

        public String getTableName()
        Gets the value of the tableName property.
        Returns:
        possible object is String
      • setTableName

        public void setTableName​(String value)
        Sets the value of the tableName property.
        Parameters:
        value - allowed object is String
      • getComment

        public String getComment()
        Gets the value of the comment property.
        Returns:
        possible object is String
      • setComment

        public void setComment​(String value)
        Sets the value of the comment property.
        Parameters:
        value - allowed object is String
      • withTableCatalog

        public Table withTableCatalog​(String value)
      • withTableSchema

        public Table withTableSchema​(String value)
      • withTableName

        public Table withTableName​(String value)
      • withComment

        public Table withComment​(String value)
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Object