org.jaxdb.ddlx_0_4.Check Maven / Gradle / Ivy
Show all versions of sqlx Show documentation
//
// 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 java.util.ArrayList;
import java.util.List;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElementRef;
import javax.xml.bind.annotation.XmlElementRefs;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for check complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="check">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="column" type="{http://www.jaxdb.org/ddlx-0.4.xsd}name"/>
* <element name="operator" type="{http://www.jaxdb.org/ddlx-0.4.xsd}rangeOperator"/>
* <choice>
* <element name="column" type="{http://www.jaxdb.org/ddlx-0.4.xsd}name"/>
* <element name="value" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </choice>
* <choice minOccurs="0">
* <element name="and" type="{http://www.jaxdb.org/ddlx-0.4.xsd}check"/>
* <element name="or" type="{http://www.jaxdb.org/ddlx-0.4.xsd}check"/>
* </choice>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "check", propOrder = {
"content"
})
public class Check {
@XmlElementRefs({
@XmlElementRef(name = "column", namespace = "http://www.jaxdb.org/ddlx-0.4.xsd", type = JAXBElement.class, required = false),
@XmlElementRef(name = "operator", namespace = "http://www.jaxdb.org/ddlx-0.4.xsd", type = JAXBElement.class, required = false),
@XmlElementRef(name = "value", namespace = "http://www.jaxdb.org/ddlx-0.4.xsd", type = JAXBElement.class, required = false),
@XmlElementRef(name = "and", namespace = "http://www.jaxdb.org/ddlx-0.4.xsd", type = JAXBElement.class, required = false),
@XmlElementRef(name = "or", namespace = "http://www.jaxdb.org/ddlx-0.4.xsd", type = JAXBElement.class, required = false)
})
protected List> content;
/**
* Gets the rest of the content model.
*
*
* You are getting this "catch-all" property because of the following reason:
* The field name "Column" is used by two different parts of a schema. See:
* line 85 of http://www.jaxdb.org/ddlx-common-0.4.xsd
* line 82 of http://www.jaxdb.org/ddlx-common-0.4.xsd
*
* To get rid of this property, apply a property customization to one
* of both of the following declarations to change their names:
* Gets the value of the content property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the content property.
*
*
* For example, to add a new item, do as follows:
*
* getContent().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link JAXBElement }{@code <}{@link String }{@code >}
* {@link JAXBElement }{@code <}{@link RangeOperator }{@code >}
* {@link JAXBElement }{@code <}{@link String }{@code >}
* {@link JAXBElement }{@code <}{@link Check }{@code >}
* {@link JAXBElement }{@code <}{@link Check }{@code >}
*
*
*/
public List> getContent() {
if (content == null) {
content = new ArrayList>();
}
return this.content;
}
}