- java.lang.Object
-
- org.jooq.util.xml.jaxb.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="table_type" type="{http://www.jooq.org/xsd/jooq-meta-3.14.0.xsd}TableType" minOccurs="0"/> <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 String
comment
protected String
tableCatalog
protected String
tableName
protected String
tableSchema
protected TableType
tableType
-
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(Object that)
String
getComment()
String
getTableCatalog()
String
getTableName()
String
getTableSchema()
TableType
getTableType()
int
hashCode()
void
setComment(String value)
void
setTableCatalog(String value)
void
setTableName(String value)
void
setTableSchema(String value)
void
setTableType(TableType value)
String
toString()
Table
withComment(String value)
Table
withTableCatalog(String value)
Table
withTableName(String value)
Table
withTableSchema(String value)
Table
withTableType(TableType value)
-
-
-
Method Detail
-
getTableCatalog
public String getTableCatalog()
-
setTableCatalog
public void setTableCatalog(String value)
-
getTableSchema
public String getTableSchema()
-
setTableSchema
public void setTableSchema(String value)
-
getTableName
public String getTableName()
-
setTableName
public void setTableName(String value)
-
getTableType
public TableType getTableType()
-
setTableType
public void setTableType(TableType value)
-
getComment
public String getComment()
-
setComment
public void setComment(String value)
-
appendTo
public final void appendTo(XMLBuilder builder)
- Specified by:
appendTo
in interfaceXMLAppendable
-
-