// // 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 ERelation. * *

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

*

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