// // 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 logicOperator_t. * * <p>The following schema fragment specifies the expected content contained within this class. * <p> * <pre> * <simpleType name="logicOperator_t"> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="AND"/> * <enumeration value="OR"/> * <enumeration value="XOR"/> * <enumeration value="NOT"/> * </restriction> * </simpleType> * </pre> * */ @XmlType(name = "logicOperator_t") @XmlEnum public enum LogicOperatorT { AND, OR, XOR, NOT; public String value() { return name(); } public static LogicOperatorT fromValue(String v) { return valueOf(v); } }