Package org.jooq.util.xml.jaxb
Class Table
- java.lang.Object
-
- org.jooq.util.xml.jaxb.Table
-
- All Implemented Interfaces:
java.io.Serializable
,XMLAppendable
public class Table extends java.lang.Object implements java.io.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 Summary
Fields Modifier and Type Field Description protected java.lang.String
comment
protected java.lang.String
tableCatalog
protected java.lang.String
tableName
protected java.lang.String
tableSchema
-
Constructor Summary
Constructors Constructor Description Table()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
appendTo(XMLBuilder builder)
boolean
equals(java.lang.Object that)
java.lang.String
getComment()
Gets the value of the comment property.java.lang.String
getTableCatalog()
Gets the value of the tableCatalog property.java.lang.String
getTableName()
Gets the value of the tableName property.java.lang.String
getTableSchema()
Gets the value of the tableSchema property.int
hashCode()
void
setComment(java.lang.String value)
Sets the value of the comment property.void
setTableCatalog(java.lang.String value)
Sets the value of the tableCatalog property.void
setTableName(java.lang.String value)
Sets the value of the tableName property.void
setTableSchema(java.lang.String value)
Sets the value of the tableSchema property.java.lang.String
toString()
Table
withComment(java.lang.String value)
Table
withTableCatalog(java.lang.String value)
Table
withTableName(java.lang.String value)
Table
withTableSchema(java.lang.String value)
-
-
-
Method Detail
-
getTableCatalog
public java.lang.String getTableCatalog()
Gets the value of the tableCatalog property.- Returns:
- possible object is
String
-
setTableCatalog
public void setTableCatalog(java.lang.String value)
Sets the value of the tableCatalog property.- Parameters:
value
- allowed object isString
-
getTableSchema
public java.lang.String getTableSchema()
Gets the value of the tableSchema property.- Returns:
- possible object is
String
-
setTableSchema
public void setTableSchema(java.lang.String value)
Sets the value of the tableSchema property.- Parameters:
value
- allowed object isString
-
getTableName
public java.lang.String getTableName()
Gets the value of the tableName property.- Returns:
- possible object is
String
-
setTableName
public void setTableName(java.lang.String value)
Sets the value of the tableName property.- Parameters:
value
- allowed object isString
-
getComment
public java.lang.String getComment()
Gets the value of the comment property.- Returns:
- possible object is
String
-
setComment
public void setComment(java.lang.String value)
Sets the value of the comment property.- Parameters:
value
- allowed object isString
-
withTableCatalog
public Table withTableCatalog(java.lang.String value)
-
withTableSchema
public Table withTableSchema(java.lang.String value)
-
withTableName
public Table withTableName(java.lang.String value)
-
withComment
public Table withComment(java.lang.String value)
-
appendTo
public final void appendTo(XMLBuilder builder)
- Specified by:
appendTo
in interfaceXMLAppendable
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object that)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
-