org.jaxdb.ddlx_0_4.Char 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.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 char complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="char">
* <complexContent>
* <extension base="{http://www.jaxdb.org/sqlx-0.4.xsd}char">
* <group ref="{http://www.jaxdb.org/ddlx-0.4.xsd}char" minOccurs="0"/>
* <attGroup ref="{http://www.jaxdb.org/ddlx-0.4.xsd}char"/>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "char", propOrder = {
"check"
})
public class Char
extends org.jaxdb.sqlx_0_4.Char
{
protected Char.Check check;
@XmlAttribute(name = "varying")
protected java.lang.Boolean varying;
@XmlAttribute(name = "default")
protected String _default;
@XmlAttribute(name = "length", required = true)
protected long length;
/**
* Gets the value of the check property.
*
* @return
* possible object is
* {@link Char.Check }
*
*/
public Char.Check getCheck() {
return check;
}
/**
* Sets the value of the check property.
*
* @param value
* allowed object is
* {@link Char.Check }
*
*/
public void setCheck(Char.Check value) {
this.check = value;
}
/**
* Gets the value of the varying property.
*
* @return
* possible object is
* {@link java.lang.Boolean }
*
*/
public java.lang.Boolean getVarying() {
if (varying == null) {
return false;
} else {
return varying;
}
}
/**
* Sets the value of the varying property.
*
* @param value
* allowed object is
* {@link java.lang.Boolean }
*
*/
public void setVarying(java.lang.Boolean value) {
this.varying = value;
}
/**
* Gets the value of the default property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDefault() {
return _default;
}
/**
* Sets the value of the default property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDefault(String value) {
this._default = value;
}
/**
* Gets the value of the length property.
*
*/
public long getLength() {
return length;
}
/**
* Sets the value of the length property.
*
*/
public void setLength(long value) {
this.length = 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}equalityOperator" />
* <attribute name="condition" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
public static class Check {
@XmlAttribute(name = "operator", required = true)
protected EqualityOperator operator;
@XmlAttribute(name = "condition", required = true)
protected String condition;
/**
* Gets the value of the operator property.
*
* @return
* possible object is
* {@link EqualityOperator }
*
*/
public EqualityOperator getOperator() {
return operator;
}
/**
* Sets the value of the operator property.
*
* @param value
* allowed object is
* {@link EqualityOperator }
*
*/
public void setOperator(EqualityOperator value) {
this.operator = value;
}
/**
* Gets the value of the condition property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCondition() {
return condition;
}
/**
* Sets the value of the condition property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCondition(String value) {
this.condition = value;
}
}
}