
org.jaxdb.ddlx_0_4.Smallint Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.1
// See https://javaee.github.io/jaxb-v2/
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2019.07.22 at 07:16:31 AM UTC
//
package org.jaxdb.ddlx_0_4;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for smallint complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="smallint">
* <complexContent>
* <extension base="{http://www.jaxdb.org/sqlx-0.4.xsd}integer">
* <group ref="{http://www.jaxdb.org/ddlx-0.4.xsd}smallint" minOccurs="0"/>
* <attGroup ref="{http://www.jaxdb.org/ddlx-0.4.xsd}smallint"/>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "smallint", propOrder = {
"check"
})
public class Smallint
extends org.jaxdb.sqlx_0_4.Integer
{
protected Smallint.Check check;
@XmlAttribute(name = "precision")
protected Byte precision;
@XmlAttribute(name = "default")
protected java.lang.Integer _default;
@XmlAttribute(name = "min")
protected java.lang.Integer min;
@XmlAttribute(name = "max")
protected java.lang.Integer max;
/**
* Gets the value of the check property.
*
* @return
* possible object is
* {@link Smallint.Check }
*
*/
public Smallint.Check getCheck() {
return check;
}
/**
* Sets the value of the check property.
*
* @param value
* allowed object is
* {@link Smallint.Check }
*
*/
public void setCheck(Smallint.Check value) {
this.check = value;
}
/**
* Gets the value of the precision property.
*
* @return
* possible object is
* {@link Byte }
*
*/
public Byte getPrecision() {
if (precision == null) {
return ((byte) 5);
} else {
return precision;
}
}
/**
* Sets the value of the precision property.
*
* @param value
* allowed object is
* {@link Byte }
*
*/
public void setPrecision(Byte value) {
this.precision = value;
}
/**
* Gets the value of the default property.
*
* @return
* possible object is
* {@link java.lang.Integer }
*
*/
public java.lang.Integer getDefault() {
return _default;
}
/**
* Sets the value of the default property.
*
* @param value
* allowed object is
* {@link java.lang.Integer }
*
*/
public void setDefault(java.lang.Integer value) {
this._default = value;
}
/**
* Gets the value of the min property.
*
* @return
* possible object is
* {@link java.lang.Integer }
*
*/
public java.lang.Integer getMin() {
return min;
}
/**
* Sets the value of the min property.
*
* @param value
* allowed object is
* {@link java.lang.Integer }
*
*/
public void setMin(java.lang.Integer value) {
this.min = value;
}
/**
* Gets the value of the max property.
*
* @return
* possible object is
* {@link java.lang.Integer }
*
*/
public java.lang.Integer getMax() {
return max;
}
/**
* Sets the value of the max property.
*
* @param value
* allowed object is
* {@link java.lang.Integer }
*
*/
public void setMax(java.lang.Integer value) {
this.max = value;
}
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="operator" use="required" type="{http://www.jaxdb.org/ddlx-0.4.xsd}rangeOperator" />
* <attribute name="condition" use="required" type="{http://www.jaxdb.org/datatypes-0.4.xsd}smallint" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
public static class Check {
@XmlAttribute(name = "operator", required = true)
protected RangeOperator operator;
@XmlAttribute(name = "condition", required = true)
protected int condition;
/**
* Gets the value of the operator property.
*
* @return
* possible object is
* {@link RangeOperator }
*
*/
public RangeOperator getOperator() {
return operator;
}
/**
* Sets the value of the operator property.
*
* @param value
* allowed object is
* {@link RangeOperator }
*
*/
public void setOperator(RangeOperator value) {
this.operator = value;
}
/**
* Gets the value of the condition property.
*
*/
public int getCondition() {
return condition;
}
/**
* Sets the value of the condition property.
*
*/
public void setCondition(int value) {
this.condition = value;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy