All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jaxdb.ddlx_0_4.RangeOperator Maven / Gradle / Ivy

Go to download

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).

There is a newer version: 0.6.0
Show newest version
//
// 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.XmlEnum;
import javax.xml.bind.annotation.XmlEnumValue;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for rangeOperator. * *

The following schema fragment specifies the expected content contained within this class. *

*

 * <simpleType name="rangeOperator">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="eq"/>
 *     <enumeration value="ne"/>
 *     <enumeration value="gt"/>
 *     <enumeration value="gte"/>
 *     <enumeration value="lt"/>
 *     <enumeration value="lte"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "rangeOperator") @XmlEnum public enum RangeOperator { @XmlEnumValue("eq") EQ("eq"), @XmlEnumValue("ne") NE("ne"), @XmlEnumValue("gt") GT("gt"), @XmlEnumValue("gte") GTE("gte"), @XmlEnumValue("lt") LT("lt"), @XmlEnumValue("lte") LTE("lte"); private final String value; RangeOperator(String v) { value = v; } public String value() { return value; } public static RangeOperator fromValue(String v) { for (RangeOperator c: RangeOperator.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy