// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-833 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.10.29 at 03:33:15 下午 CST // package org.solmix.api.jaxb; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for Eoperation. * * <p>The following schema fragment specifies the expected content contained within this class. * <p> * <pre> * <simpleType name="Eoperation"> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="fetch"/> * <enumeration value="add"/> * <enumeration value="update"/> * <enumeration value="remove"/> * <enumeration value="validate"/> * <enumeration value="custom"/> * <enumeration value="replace"/> * <enumeration value="downloadFile"/> * <enumeration value="viewFile"/> * <enumeration value="loadSchema"/> * </restriction> * </simpleType> * </pre> * */ @XmlType(name = "Eoperation") @XmlEnum public enum Eoperation { @XmlEnumValue("fetch") FETCH("fetch"), @XmlEnumValue("add") ADD("add"), @XmlEnumValue("update") UPDATE("update"), @XmlEnumValue("remove") REMOVE("remove"), @XmlEnumValue("validate") VALIDATE("validate"), @XmlEnumValue("custom") CUSTOM("custom"), @XmlEnumValue("replace") REPLACE("replace"), @XmlEnumValue("downloadFile") DOWNLOAD_FILE("downloadFile"), @XmlEnumValue("viewFile") VIEW_FILE("viewFile"), @XmlEnumValue("loadSchema") LOAD_SCHEMA("loadSchema"); private final String value; Eoperation(String v) { value = v; } public String value() { return value; } public static Eoperation fromValue(String v) { for (Eoperation c: Eoperation.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }