![JAR search and dependency download from the Maven repository](/logo.png)
uk.org.siri.siri20.TaxiSubmodesOfTransportEnumeration 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 TaxiSubmodesOfTransportEnumeration.
*
*
The following schema fragment specifies the expected content contained within this class.
*
* <simpleType name="TaxiSubmodesOfTransportEnumeration">
* <restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN">
* <enumeration value="pti11_0"/>
* <enumeration value="unknown"/>
* <enumeration value="pti11_1"/>
* <enumeration value="communalTaxi"/>
* <enumeration value="pti11_2"/>
* <enumeration value="waterTaxi"/>
* <enumeration value="pti11_3"/>
* <enumeration value="railTaxi"/>
* <enumeration value="pti11_4"/>
* <enumeration value="bikeTaxi"/>
* <enumeration value="pti11_5"/>
* <enumeration value="blackCab"/>
* <enumeration value="pti11_6"/>
* <enumeration value="miniCab"/>
* <enumeration value="pti11_7"/>
* <enumeration value="allTaxiServices"/>
* <enumeration value="pti11_255"/>
* <enumeration value="undefinedTaxiService"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "TaxiSubmodesOfTransportEnumeration")
@XmlEnum
public enum TaxiSubmodesOfTransportEnumeration {
@XmlEnumValue("pti11_0")
PTI_11_0("pti11_0"),
@XmlEnumValue("unknown")
UNKNOWN("unknown"),
@XmlEnumValue("pti11_1")
PTI_11_1("pti11_1"),
@XmlEnumValue("communalTaxi")
COMMUNAL_TAXI("communalTaxi"),
@XmlEnumValue("pti11_2")
PTI_11_2("pti11_2"),
@XmlEnumValue("waterTaxi")
WATER_TAXI("waterTaxi"),
@XmlEnumValue("pti11_3")
PTI_11_3("pti11_3"),
@XmlEnumValue("railTaxi")
RAIL_TAXI("railTaxi"),
@XmlEnumValue("pti11_4")
PTI_11_4("pti11_4"),
@XmlEnumValue("bikeTaxi")
BIKE_TAXI("bikeTaxi"),
@XmlEnumValue("pti11_5")
PTI_11_5("pti11_5"),
@XmlEnumValue("blackCab")
BLACK_CAB("blackCab"),
@XmlEnumValue("pti11_6")
PTI_11_6("pti11_6"),
@XmlEnumValue("miniCab")
MINI_CAB("miniCab"),
@XmlEnumValue("pti11_7")
PTI_11_7("pti11_7"),
@XmlEnumValue("allTaxiServices")
ALL_TAXI_SERVICES("allTaxiServices"),
@XmlEnumValue("pti11_255")
PTI_11_255("pti11_255"),
@XmlEnumValue("undefinedTaxiService")
UNDEFINED_TAXI_SERVICE("undefinedTaxiService");
private final String value;
TaxiSubmodesOfTransportEnumeration(String v) {
value = v;
}
public String value() {
return value;
}
public static TaxiSubmodesOfTransportEnumeration fromValue(String v) {
for (TaxiSubmodesOfTransportEnumeration c: TaxiSubmodesOfTransportEnumeration.values()) {
if (c.value.equals(v)) {
return c;
}
}
throw new IllegalArgumentException(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy