- java.lang.Object
-
- org.jooq.util.xml.jaxb.Sequence
-
- All Implemented Interfaces:
Serializable,XMLAppendable
public class Sequence extends Object implements Serializable, XMLAppendable
Java class for Sequence complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="Sequence"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <all> <element name="sequence_catalog" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="sequence_schema" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="sequence_name" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="data_type" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="character_maximum_length" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/> <element name="numeric_precision" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/> <element name="numeric_scale" type="{http://www.w3.org/2001/XMLSchema}int" 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 IntegercharacterMaximumLengthprotected Stringcommentprotected StringdataTypeprotected IntegernumericPrecisionprotected IntegernumericScaleprotected StringsequenceCatalogprotected StringsequenceNameprotected StringsequenceSchema
-
Constructor Summary
Constructors Constructor Description Sequence()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidappendTo(XMLBuilder builder)booleanequals(Object that)IntegergetCharacterMaximumLength()Gets the value of the characterMaximumLength property.StringgetComment()Gets the value of the comment property.StringgetDataType()Gets the value of the dataType property.IntegergetNumericPrecision()Gets the value of the numericPrecision property.IntegergetNumericScale()Gets the value of the numericScale property.StringgetSequenceCatalog()Gets the value of the sequenceCatalog property.StringgetSequenceName()Gets the value of the sequenceName property.StringgetSequenceSchema()Gets the value of the sequenceSchema property.inthashCode()voidsetCharacterMaximumLength(Integer value)Sets the value of the characterMaximumLength property.voidsetComment(String value)Sets the value of the comment property.voidsetDataType(String value)Sets the value of the dataType property.voidsetNumericPrecision(Integer value)Sets the value of the numericPrecision property.voidsetNumericScale(Integer value)Sets the value of the numericScale property.voidsetSequenceCatalog(String value)Sets the value of the sequenceCatalog property.voidsetSequenceName(String value)Sets the value of the sequenceName property.voidsetSequenceSchema(String value)Sets the value of the sequenceSchema property.StringtoString()SequencewithCharacterMaximumLength(Integer value)SequencewithComment(String value)SequencewithDataType(String value)SequencewithNumericPrecision(Integer value)SequencewithNumericScale(Integer value)SequencewithSequenceCatalog(String value)SequencewithSequenceName(String value)SequencewithSequenceSchema(String value)
-
-
-
Field Detail
-
sequenceCatalog
protected String sequenceCatalog
-
sequenceSchema
protected String sequenceSchema
-
sequenceName
protected String sequenceName
-
dataType
protected String dataType
-
characterMaximumLength
protected Integer characterMaximumLength
-
numericPrecision
protected Integer numericPrecision
-
numericScale
protected Integer numericScale
-
comment
protected String comment
-
-
Method Detail
-
getSequenceCatalog
public String getSequenceCatalog()
Gets the value of the sequenceCatalog property.- Returns:
- possible object is
String
-
setSequenceCatalog
public void setSequenceCatalog(String value)
Sets the value of the sequenceCatalog property.- Parameters:
value- allowed object isString
-
getSequenceSchema
public String getSequenceSchema()
Gets the value of the sequenceSchema property.- Returns:
- possible object is
String
-
setSequenceSchema
public void setSequenceSchema(String value)
Sets the value of the sequenceSchema property.- Parameters:
value- allowed object isString
-
getSequenceName
public String getSequenceName()
Gets the value of the sequenceName property.- Returns:
- possible object is
String
-
setSequenceName
public void setSequenceName(String value)
Sets the value of the sequenceName property.- Parameters:
value- allowed object isString
-
getDataType
public String getDataType()
Gets the value of the dataType property.- Returns:
- possible object is
String
-
setDataType
public void setDataType(String value)
Sets the value of the dataType property.- Parameters:
value- allowed object isString
-
getCharacterMaximumLength
public Integer getCharacterMaximumLength()
Gets the value of the characterMaximumLength property.- Returns:
- possible object is
Integer
-
setCharacterMaximumLength
public void setCharacterMaximumLength(Integer value)
Sets the value of the characterMaximumLength property.- Parameters:
value- allowed object isInteger
-
getNumericPrecision
public Integer getNumericPrecision()
Gets the value of the numericPrecision property.- Returns:
- possible object is
Integer
-
setNumericPrecision
public void setNumericPrecision(Integer value)
Sets the value of the numericPrecision property.- Parameters:
value- allowed object isInteger
-
getNumericScale
public Integer getNumericScale()
Gets the value of the numericScale property.- Returns:
- possible object is
Integer
-
setNumericScale
public void setNumericScale(Integer value)
Sets the value of the numericScale property.- Parameters:
value- allowed object isInteger
-
getComment
public String getComment()
Gets the value of the comment property.- Returns:
- possible object is
String
-
setComment
public void setComment(String value)
Sets the value of the comment property.- Parameters:
value- allowed object isString
-
appendTo
public final void appendTo(XMLBuilder builder)
- Specified by:
appendToin interfaceXMLAppendable
-
-