- java.lang.Object
-
- org.jooq.meta.jaxb.SyntheticViewType
-
- All Implemented Interfaces:
Serializable,XMLAppendable
public class SyntheticViewType extends Object implements Serializable, XMLAppendable
Java class for SyntheticViewType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="SyntheticViewType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <all> <element name="catalog" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="schema" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="comment" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="sql" type="{http://www.w3.org/2001/XMLSchema}string"/> </all> </restriction> </complexContent> </complexType>- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SyntheticViewType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidappendTo(XMLBuilder builder)booleanequals(Object that)StringgetCatalog()The defining catalog of the view.StringgetComment()The defining comment on the view.StringgetName()The defining name of the view.StringgetSchema()The defining schema of the view.StringgetSql()The defining SQL query.inthashCode()voidsetCatalog(String value)The defining catalog of the view.voidsetComment(String value)The defining comment on the view.voidsetName(String value)The defining name of the view.voidsetSchema(String value)The defining schema of the view.voidsetSql(String value)The defining SQL query.StringtoString()SyntheticViewTypewithCatalog(String value)The defining catalog of the view.SyntheticViewTypewithComment(String value)The defining comment on the view.SyntheticViewTypewithName(String value)The defining name of the view.SyntheticViewTypewithSchema(String value)The defining schema of the view.SyntheticViewTypewithSql(String value)The defining SQL query.
-
-
-
Method Detail
-
getCatalog
public String getCatalog()
The defining catalog of the view.
-
setCatalog
public void setCatalog(String value)
The defining catalog of the view.
-
getSchema
public String getSchema()
The defining schema of the view.
-
setSchema
public void setSchema(String value)
The defining schema of the view.
-
getName
public String getName()
The defining name of the view.
-
setName
public void setName(String value)
The defining name of the view.
-
getComment
public String getComment()
The defining comment on the view.
-
setComment
public void setComment(String value)
The defining comment on the view.
-
getSql
public String getSql()
The defining SQL query.
-
setSql
public void setSql(String value)
The defining SQL query.
-
withCatalog
public SyntheticViewType withCatalog(String value)
The defining catalog of the view.
-
withSchema
public SyntheticViewType withSchema(String value)
The defining schema of the view.
-
withName
public SyntheticViewType withName(String value)
The defining name of the view.
-
withComment
public SyntheticViewType withComment(String value)
The defining comment on the view.
-
withSql
public SyntheticViewType withSql(String value)
The defining SQL query.
-
appendTo
public final void appendTo(XMLBuilder builder)
- Specified by:
appendToin interfaceXMLAppendable
-
-