// // 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.XmlEnumValue; import javax.xml.bind.annotation.XmlType; /** * <p> * Java class for phoneticAlphabetType. * * <p> * The following schema fragment specifies the expected content contained within * this class. * <p> * * <pre> * <simpleType name="phoneticAlphabetType"> * <restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN"> * <enumeration value="sampa"/> * <enumeration value="ipaSymbol"/> * <enumeration value="ipaNumber"/> * <enumeration value="other"/> * </restriction> * </simpleType> * </pre> * */ @XmlType(name = "phoneticAlphabetType") @XmlEnum public enum PhoneticAlphabetType { @XmlEnumValue("sampa") SAMPA("sampa"), @XmlEnumValue("ipaSymbol") IPA_SYMBOL("ipaSymbol"), @XmlEnumValue("ipaNumber") IPA_NUMBER("ipaNumber"), @XmlEnumValue("other") OTHER("other"); private final String value; PhoneticAlphabetType(String v) { value = v; } public String value() { return value; } public static PhoneticAlphabetType fromValue(String v) { for (PhoneticAlphabetType c : PhoneticAlphabetType.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }