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 ReportType.
9
 *
10
 * <p>The following schema fragment specifies the expected content contained within this class.
11
 * <p>
12
 * <pre>
13
 * &lt;simpleType name="ReportType">
14
 *   &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
15
 *     &lt;enumeration value="LISTING"/>
16
 *   &lt;/restriction>
17
 * &lt;/simpleType>
18
 * </pre>
19
 *
20
 */
21
@XmlType(name = "ReportType")
22
@XmlEnum
23
public enum ReportType {
24
25
 
26
27
 
28
        return name();
29
    }
30
31
 
32
        return valueOf(v);
33
    }
34
35
 
36