All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.omgm.speedy.eps.soap.model.ParamLanguage Maven / Gradle / Ivy


package com.omgm.speedy.eps.soap.model;

import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for paramLanguage. * *

The following schema fragment specifies the expected content contained within this class. *

*

 * <simpleType name="paramLanguage">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="BG"/>
 *     <enumeration value="EN"/>
 *   </restriction>
 * </simpleType>
 * 
* *

Language enumeration * * @since 1.2.0 */ @XmlType(name = "paramLanguage") @XmlEnum public enum ParamLanguage { /** * Bulgarian language */ BG, /** * Engilish language */ EN; /** * Get enumeration name as value * @return Enumeration name */ public String value() { return name(); } /** * Get enum instance from string * @param v String value * @return Enum instance */ public static ParamLanguage fromValue(String v) { return valueOf(v); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy