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>
Modifier and Type | Field and Description |
---|---|
protected String |
comment |
protected String |
tableCatalog |
protected String |
tableName |
protected String |
tableSchema |
protected TableType |
tableType |
Constructor and Description |
---|
Table() |
Modifier and Type | Method and 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) |
protected String tableCatalog
protected String tableSchema
protected String tableName
protected TableType tableType
protected String comment
public String getTableCatalog()
public void setTableCatalog(String value)
public String getTableSchema()
public void setTableSchema(String value)
public String getTableName()
public void setTableName(String value)
public TableType getTableType()
public void setTableType(TableType value)
public String getComment()
public void setComment(String value)
public final void appendTo(XMLBuilder builder)
appendTo
in interface XMLAppendable
Copyright © 2021. All rights reserved.