org.jaxdb.sqlx_0_4.Integer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sqlx Show documentation
Show all versions of sqlx Show documentation
SQLx is a vendor-agnostic, XML-based SQL data definition standard that offers the power of XML
validation for your static SQL data. The SQLx framework utilizes a strongly-typed DDLx file to
generate a XML Schema document that translates DDLx constructs into the XSD language. With the
SQLx XSLT, the SQLx tool leverages the power of XML Schema Validation and provides a cohesive
structured model to define SQL data (that conforms to your SQL schema, defined in a DDLx file).
//
// 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.sqlx_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.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import org.jaxdb.ddlx_0_4.Bigint;
import org.jaxdb.ddlx_0_4.Int;
import org.jaxdb.ddlx_0_4.Smallint;
import org.jaxdb.ddlx_0_4.Tinyint;
/**
* Java class for integer complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="integer">
* <complexContent>
* <extension base="{http://www.jaxdb.org/ddlx-0.4.xsd}integer">
* <attGroup ref="{http://www.jaxdb.org/sqlx-0.4.xsd}integer"/>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "integer")
@XmlSeeAlso({
Tinyint.class,
Smallint.class,
Int.class,
Bigint.class
})
public abstract class Integer
extends org.jaxdb.ddlx_0_4.Integer
{
@XmlAttribute(name = "generateOnUpdate", namespace = "http://www.jaxdb.org/sqlx-0.4.xsd")
protected String generateOnUpdate;
/**
* Gets the value of the generateOnUpdate property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getGenerateOnUpdate() {
return generateOnUpdate;
}
/**
* Sets the value of the generateOnUpdate property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setGenerateOnUpdate(String value) {
this.generateOnUpdate = value;
}
}