Package org.jooq.util.xml.jaxb
Class Catalog
- java.lang.Object
-
- org.jooq.util.xml.jaxb.Catalog
-
- All Implemented Interfaces:
java.io.Serializable,XMLAppendable
public class Catalog extends java.lang.Object implements java.io.Serializable, XMLAppendable
Java class for Catalog complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="Catalog"> <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="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.StringcatalogNameprotected java.lang.Stringcomment
-
Constructor Summary
Constructors Constructor Description Catalog()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidappendTo(XMLBuilder builder)booleanequals(java.lang.Object that)java.lang.StringgetCatalogName()Gets the value of the catalogName property.java.lang.StringgetComment()Gets the value of the comment property.inthashCode()voidsetCatalogName(java.lang.String value)Sets the value of the catalogName property.voidsetComment(java.lang.String value)Sets the value of the comment property.java.lang.StringtoString()CatalogwithCatalogName(java.lang.String value)CatalogwithComment(java.lang.String value)
-
-
-
Method Detail
-
getCatalogName
public java.lang.String getCatalogName()
Gets the value of the catalogName property.- Returns:
- possible object is
String
-
setCatalogName
public void setCatalogName(java.lang.String value)
Sets the value of the catalogName 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
-
withCatalogName
public Catalog withCatalogName(java.lang.String value)
-
withComment
public Catalog withComment(java.lang.String value)
-
appendTo
public final void appendTo(XMLBuilder builder)
- Specified by:
appendToin interfaceXMLAppendable
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
equals
public boolean equals(java.lang.Object that)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
-