// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4 // 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: 2012.07.24 at 11:42:28 PM CEST // package eu.prestoprime.model.ext.qa; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlType; /** * <p> * Java class for degreeNoteType. * * <p> * The following schema fragment specifies the expected content contained within * this class. * <p> * * <pre> * <simpleType name="degreeNoteType"> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="C"/> * <enumeration value="D"/> * <enumeration value="E"/> * <enumeration value="F"/> * <enumeration value="G"/> * <enumeration value="A"/> * <enumeration value="B"/> * </restriction> * </simpleType> * </pre> * */ @XmlType(name = "degreeNoteType") @XmlEnum public enum DegreeNoteType { C, D, E, F, G, A, B; public String value() { return name(); } public static DegreeNoteType fromValue(String v) { return valueOf(v); } }