// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.3-b01-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2006.10.27 at 11:21:39 AM EDT // package jaxb; import javax.xml.bind.annotation.XmlEnum; /** * <p>Java class for timingType. * * <p>The following schema fragment specifies the expected content contained within this class. * <p> * <pre> * <simpleType name="timingType"> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="ANY"/> * <enumeration value="SAME"/> * <enumeration value="ORDER_BY_DATE"/> * <enumeration value="SPAN_BY_DATE"/> * </restriction> * </simpleType> * </pre> * */ @XmlEnum public enum TimingType { ANY, SAME, ORDER_BY_DATE, SPAN_BY_DATE; public String value() { return name(); } public static TimingType fromValue(String v) { return valueOf(v); } }