Go to most recent revision | View as "text/plain" | Blame | Last modification | View Log | Download | RSS feed
package net.brutex.sbm.wsclient;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for ReportCategory.
*
* <p>The following schema fragment specifies the expected content contained within this class.
* <p>
* <pre>
* <simpleType name="ReportCategory">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="ALL"/>
* <enumeration value="APPLICATION"/>
* <enumeration value="BUILTIN"/>
* <enumeration value="MY"/>
* <enumeration value="QUICKLINKS"/>
* <enumeration value="USERREPORTS"/>
* </restriction>
* </simpleType>
* </pre>
*
*/
@XmlType(name = "ReportCategory")
@XmlEnum
public enum ReportCategory {
ALL,
APPLICATION,
BUILTIN,
MY,
QUICKLINKS,
USERREPORTS;
public String value() {
return name();
}
public static ReportCategory fromValue(String v) {
return valueOf(v);
}
}