- java.lang.Object
-
- org.jooq.util.xml.jaxb.Schema
-
- All Implemented Interfaces:
Serializable
,XMLAppendable
public class Schema extends Object implements Serializable, XMLAppendable
Java class for Schema complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="Schema"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <all> <element name="catalog_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="schema_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 String
catalogName
protected String
comment
protected String
schemaName
-
Constructor Summary
Constructors Constructor Description Schema()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
appendTo(XMLBuilder builder)
boolean
equals(Object that)
String
getCatalogName()
String
getComment()
String
getSchemaName()
int
hashCode()
void
setCatalogName(String value)
void
setComment(String value)
void
setSchemaName(String value)
String
toString()
Schema
withCatalogName(String value)
Schema
withComment(String value)
Schema
withSchemaName(String value)
-
-
-
Method Detail
-
getCatalogName
public String getCatalogName()
-
setCatalogName
public void setCatalogName(String value)
-
getSchemaName
public String getSchemaName()
-
setSchemaName
public void setSchemaName(String value)
-
getComment
public String getComment()
-
setComment
public void setComment(String value)
-
appendTo
public final void appendTo(XMLBuilder builder)
- Specified by:
appendTo
in interfaceXMLAppendable
-
-