package com.amalto.workbench.webservices; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for WSLanguage. * * <p>The following schema fragment specifies the expected content contained within this class. * <p> * <pre> * <simpleType name="WSLanguage"> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="FR"/> * <enumeration value="EN"/> * </restriction> * </simpleType> * </pre> * */ @XmlType(name = "WSLanguage") @XmlEnum public enum WSLanguage { FR, EN; public String value() { return name(); } public static WSLanguage fromValue(String v) { return valueOf(v); } }