// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 // 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: 2014.06.12 at 01:48:04 PM CEST // package de.tum.in.i22.uc.pdp.xsd.time; import ae.javax.xml.bind.annotation.XmlEnum; import ae.javax.xml.bind.annotation.XmlType; /** * <p>Java class for TimeUnitType. * * <p>The following schema fragment specifies the expected content contained within this class. * <p> * <pre> * <simpleType name="TimeUnitType"> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="TIMESTEPS"/> * <enumeration value="NANOSECONDS"/> * <enumeration value="MICROSECONDS"/> * <enumeration value="MILLISECONDS"/> * <enumeration value="SECONDS"/> * <enumeration value="MINUTES"/> * <enumeration value="HOURS"/> * <enumeration value="DAYS"/> * <enumeration value="WEEKS"/> * <enumeration value="MONTHS"/> * <enumeration value="YEARS"/> * </restriction> * </simpleType> * </pre> * */ @XmlType(name = "TimeUnitType") @XmlEnum public enum TimeUnitType { TIMESTEPS, NANOSECONDS, MICROSECONDS, MILLISECONDS, SECONDS, MINUTES, HOURS, DAYS, WEEKS, MONTHS, YEARS; public String value() { return name(); } public static TimeUnitType fromValue(String v) { return valueOf(v); } }