package net.brutex.sbm.wsclient; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlType; /** *

Java class for ReportCategory. * *

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

*

 * <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>
 * 
* */ @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); } }