// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.3u2-hudson-jaxb-ri-2.2.3-4- // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2011.10.02 at 06:28:50 PM EDT // package seg.jUCMNav.nfp.generated; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; import javax.xml.bind.annotation.XmlType; /** *
Java class for ResponseKind. * *
The following schema fragment specifies the expected content contained within this class. *
*
* <simpleType name="ResponseKind">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="CrashOnly"/>
* <enumeration value="Other"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "ResponseKind")
@XmlEnum
public enum ResponseKind {
@XmlEnumValue("CrashOnly")
CRASH_ONLY("CrashOnly"),
@XmlEnumValue("Other")
OTHER("Other");
private final String value;
ResponseKind(String v) {
value = v;
}
public String value() {
return value;
}
public static ResponseKind fromValue(String v) {
for (ResponseKind c: ResponseKind.values()) {
if (c.value.equals(v)) {
return c;
}
}
throw new IllegalArgumentException(v);
}
}