com.ean.wsapi.hotel.v3.SmokingPreference Maven / Gradle / Ivy
package com.ean.wsapi.hotel.v3;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for SmokingPreference.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="SmokingPreference">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="S"/>
* <enumeration value="NS"/>
* <enumeration value="E"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "SmokingPreference")
@XmlEnum
public enum SmokingPreference {
S,
NS,
E;
public String value() {
return name();
}
public static SmokingPreference fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy