// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.2-147 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2014.08.30 at 06:23:18 PM PDT // package com.megacorp.projectx.xml.jaxb; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; import javax.xml.bind.annotation.XmlType; /** *

Java class for ELocation. * *

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

*

 * <simpleType name="ELocation">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="OnSite"/>
 *     <enumeration value="OffSite"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "ELocation") @XmlEnum public enum ELocation { @XmlEnumValue("OnSite") ON_SITE("OnSite"), @XmlEnumValue("OffSite") OFF_SITE("OffSite"); private final String value; ELocation(String v) { value = v; } public String value() { return value; } public static ELocation fromValue(String v) { for (ELocation c: ELocation.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }