org.jooq.util.xml.jaxb.Sequence Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-b10
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2017.01.20 at 02:50:09 PM CET
//
package org.jooq.util.xml.jaxb;
import java.io.Serializable;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import org.jooq.util.jaxb.tools.StringAdapter;
/**
* 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"/>
* </all>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Sequence", propOrder = {
})
@SuppressWarnings({
"all"
})
public class Sequence implements Serializable
{
private final static long serialVersionUID = 354L;
@XmlElement(name = "sequence_catalog")
@XmlJavaTypeAdapter(StringAdapter.class)
protected String sequenceCatalog;
@XmlElement(name = "sequence_schema")
@XmlJavaTypeAdapter(StringAdapter.class)
protected String sequenceSchema;
@XmlElement(name = "sequence_name", required = true)
@XmlJavaTypeAdapter(StringAdapter.class)
protected String sequenceName;
@XmlElement(name = "data_type", required = true)
@XmlJavaTypeAdapter(StringAdapter.class)
protected String dataType;
@XmlElement(name = "character_maximum_length")
protected Integer characterMaximumLength;
@XmlElement(name = "numeric_precision")
protected Integer numericPrecision;
@XmlElement(name = "numeric_scale")
protected Integer numericScale;
/**
* Gets the value of the sequenceCatalog property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSequenceCatalog() {
return sequenceCatalog;
}
/**
* Sets the value of the sequenceCatalog property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSequenceCatalog(String value) {
this.sequenceCatalog = value;
}
/**
* Gets the value of the sequenceSchema property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSequenceSchema() {
return sequenceSchema;
}
/**
* Sets the value of the sequenceSchema property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSequenceSchema(String value) {
this.sequenceSchema = value;
}
/**
* Gets the value of the sequenceName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSequenceName() {
return sequenceName;
}
/**
* Sets the value of the sequenceName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSequenceName(String value) {
this.sequenceName = value;
}
/**
* Gets the value of the dataType property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDataType() {
return dataType;
}
/**
* Sets the value of the dataType property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDataType(String value) {
this.dataType = value;
}
/**
* Gets the value of the characterMaximumLength property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getCharacterMaximumLength() {
return characterMaximumLength;
}
/**
* Sets the value of the characterMaximumLength property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setCharacterMaximumLength(Integer value) {
this.characterMaximumLength = value;
}
/**
* Gets the value of the numericPrecision property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getNumericPrecision() {
return numericPrecision;
}
/**
* Sets the value of the numericPrecision property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setNumericPrecision(Integer value) {
this.numericPrecision = value;
}
/**
* Gets the value of the numericScale property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getNumericScale() {
return numericScale;
}
/**
* Sets the value of the numericScale property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setNumericScale(Integer value) {
this.numericScale = value;
}
public Sequence withSequenceCatalog(String value) {
setSequenceCatalog(value);
return this;
}
public Sequence withSequenceSchema(String value) {
setSequenceSchema(value);
return this;
}
public Sequence withSequenceName(String value) {
setSequenceName(value);
return this;
}
public Sequence withDataType(String value) {
setDataType(value);
return this;
}
public Sequence withCharacterMaximumLength(Integer value) {
setCharacterMaximumLength(value);
return this;
}
public Sequence withNumericPrecision(Integer value) {
setNumericPrecision(value);
return this;
}
public Sequence withNumericScale(Integer value) {
setNumericScale(value);
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy