![JAR search and dependency download from the Maven repository](/logo.png)
uk.org.siri.siri20.PassengerCommsFacilityEnumeration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of siri-java-model Show documentation
Show all versions of siri-java-model Show documentation
Java objects based on the public SIRI XSDs
The newest version!
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2025.01.07 at 02:19:39 PM UTC
//
package uk.org.siri.siri20;
import jakarta.xml.bind.annotation.XmlEnum;
import jakarta.xml.bind.annotation.XmlEnumValue;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for PassengerCommsFacilityEnumeration.
*
*
The following schema fragment specifies the expected content contained within this class.
*
* <simpleType name="PassengerCommsFacilityEnumeration">
* <restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN">
* <enumeration value="unknown"/>
* <enumeration value="faccomms_1"/>
* <enumeration value="passengerWifi"/>
* <enumeration value="pti23_21"/>
* <enumeration value="telephone"/>
* <enumeration value="pti23_14"/>
* <enumeration value="audioServices"/>
* <enumeration value="pti23_15"/>
* <enumeration value="videoServices"/>
* <enumeration value="pti23_25"/>
* <enumeration value="businessServices"/>
* <enumeration value="internet"/>
* <enumeration value="postoffice"/>
* <enumeration value="letterbox"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "PassengerCommsFacilityEnumeration")
@XmlEnum
public enum PassengerCommsFacilityEnumeration {
@XmlEnumValue("unknown")
UNKNOWN("unknown"),
@XmlEnumValue("faccomms_1")
FACCOMMS_1("faccomms_1"),
@XmlEnumValue("passengerWifi")
PASSENGER_WIFI("passengerWifi"),
@XmlEnumValue("pti23_21")
PTI_23_21("pti23_21"),
@XmlEnumValue("telephone")
TELEPHONE("telephone"),
@XmlEnumValue("pti23_14")
PTI_23_14("pti23_14"),
@XmlEnumValue("audioServices")
AUDIO_SERVICES("audioServices"),
@XmlEnumValue("pti23_15")
PTI_23_15("pti23_15"),
@XmlEnumValue("videoServices")
VIDEO_SERVICES("videoServices"),
@XmlEnumValue("pti23_25")
PTI_23_25("pti23_25"),
@XmlEnumValue("businessServices")
BUSINESS_SERVICES("businessServices"),
@XmlEnumValue("internet")
INTERNET("internet"),
@XmlEnumValue("postoffice")
POSTOFFICE("postoffice"),
@XmlEnumValue("letterbox")
LETTERBOX("letterbox");
private final String value;
PassengerCommsFacilityEnumeration(String v) {
value = v;
}
public String value() {
return value;
}
public static PassengerCommsFacilityEnumeration fromValue(String v) {
for (PassengerCommsFacilityEnumeration c: PassengerCommsFacilityEnumeration.values()) {
if (c.value.equals(v)) {
return c;
}
}
throw new IllegalArgumentException(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy