// // 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.core; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for Inclusion_t. * * <p>The following schema fragment specifies the expected content contained within this class. * <p> * <pre> * <simpleType name="Inclusion_t"> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="Include"/> * <enumeration value="Exclude"/> * </restriction> * </simpleType> * </pre> * */ @XmlType(name = "Inclusion_t") @XmlEnum public enum InclusionT { @XmlEnumValue("Include") INCLUDE("Include"), @XmlEnumValue("Exclude") EXCLUDE("Exclude"); private final String value; InclusionT(String v) { value = v; } public String value() { return value; } public static InclusionT fromValue(String v) { for (InclusionT c: InclusionT.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }