// // 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:49:30 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 EGender. * *

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

*

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