com.xerox.amazonws.typica.fps.jaxb.CSNumberOf Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1-b02-fcs
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2010.10.06 at 09:30:16 PM CEST
//
package com.xerox.amazonws.typica.fps.jaxb;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlEnumValue;
/**
* Java class for CSNumberOf.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="CSNumberOf">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="Caller"/>
* <enumeration value="Recipient"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlEnum
public enum CSNumberOf {
@XmlEnumValue("Caller")
CALLER("Caller"),
@XmlEnumValue("Recipient")
RECIPIENT("Recipient");
private final String value;
CSNumberOf(String v) {
value = v;
}
public String value() {
return value;
}
public static CSNumberOf fromValue(String v) {
for (CSNumberOf c: CSNumberOf.values()) {
if (c.value.equals(v)) {
return c;
}
}
throw new IllegalArgumentException(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy