// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2010.02.24 at 10:55:05 AM CST // package org.atdl4j.fixatdl.validation; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for operator_t. * * <p>The following schema fragment specifies the expected content contained within this class. * <p> * <pre> * <simpleType name="operator_t"> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="EX"/> * <enumeration value="NX"/> * <enumeration value="EQ"/> * <enumeration value="NE"/> * <enumeration value="LE"/> * <enumeration value="LT"/> * <enumeration value="GE"/> * <enumeration value="GT"/> * </restriction> * </simpleType> * </pre> * */ @XmlType(name = "operator_t") @XmlEnum public enum OperatorT { EX, NX, EQ, NE, LE, LT, GE, GT; public String value() { return name(); } public static OperatorT fromValue(String v) { return valueOf(v); } }