Subversion Repositories XServices

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
30 brianR 1
 
2
3
 
4
import javax.xml.bind.annotation.XmlType;
5
6
 
7
 
8
 * <p>Java class for ReportCategory.
9
 *
10
 * <p>The following schema fragment specifies the expected content contained within this class.
11
 * <p>
12
 * <pre>
13
 * &lt;simpleType name="ReportCategory">
14
 *   &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
15
 *     &lt;enumeration value="ALL"/>
16
 *     &lt;enumeration value="APPLICATION"/>
17
 *     &lt;enumeration value="BUILTIN"/>
18
 *     &lt;enumeration value="MY"/>
19
 *     &lt;enumeration value="QUICKLINKS"/>
20
 *     &lt;enumeration value="USERREPORTS"/>
21
 *   &lt;/restriction>
22
 * &lt;/simpleType>
23
 * </pre>
24
 *
25
 */
26
@XmlType(name = "ReportCategory")
27
@XmlEnum
28
public enum ReportCategory {
29
30
 
31
    APPLICATION,
32
    BUILTIN,
33
    MY,
34
    QUICKLINKS,
35
    USERREPORTS;
36
37
 
38
        return name();
39
    }
40
41
 
42
        return valueOf(v);
43
    }
44
45
 
46