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

Java class for ReportType. * *

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

*

 * <simpleType name="ReportType">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="LISTING"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "ReportType") @XmlEnum public enum ReportType { LISTING; public String value() { return name(); } public static ReportType fromValue(String v) { return valueOf(v); } }