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

uk.org.siri.siri21.SelfDriveSubmodesOfTransportEnumeration Maven / Gradle / Ivy

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:41 PM UTC 
//


package uk.org.siri.siri21;

import jakarta.xml.bind.annotation.XmlEnum;
import jakarta.xml.bind.annotation.XmlEnumValue;
import jakarta.xml.bind.annotation.XmlType;


/**
 * 

Java class for SelfDriveSubmodesOfTransportEnumeration. * *

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

 * <simpleType name="SelfDriveSubmodesOfTransportEnumeration">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN">
 *     <enumeration value="unknown"/>
 *     <enumeration value="undefined"/>
 *     <enumeration value="hireCar"/>
 *     <enumeration value="hireVan"/>
 *     <enumeration value="hireMotorbike"/>
 *     <enumeration value="hireCycle"/>
 *     <enumeration value="allHireVehicles"/>
 *     <enumeration value="undefinedHireVehicle"/>
 *     <enumeration value="pti12_0"/>
 *     <enumeration value="pti12_1"/>
 *     <enumeration value="pti12_2"/>
 *     <enumeration value="pti12_3"/>
 *     <enumeration value="pti12_4"/>
 *     <enumeration value="pti12_5"/>
 *     <enumeration value="pti12_255"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "SelfDriveSubmodesOfTransportEnumeration") @XmlEnum public enum SelfDriveSubmodesOfTransportEnumeration { /** * Submode of transport is not known to the source system. * */ @XmlEnumValue("unknown") UNKNOWN("unknown"), /** * (SIRI 2.1) - see also 'undefinedHireVehicle'. * */ @XmlEnumValue("undefined") UNDEFINED("undefined"), @XmlEnumValue("hireCar") HIRE_CAR("hireCar"), @XmlEnumValue("hireVan") HIRE_VAN("hireVan"), @XmlEnumValue("hireMotorbike") HIRE_MOTORBIKE("hireMotorbike"), @XmlEnumValue("hireCycle") HIRE_CYCLE("hireCycle"), @XmlEnumValue("allHireVehicles") ALL_HIRE_VEHICLES("allHireVehicles"), /** * Submode of transport is not supported in this list. * */ @XmlEnumValue("undefinedHireVehicle") UNDEFINED_HIRE_VEHICLE("undefinedHireVehicle"), /** * DEPRECATED since SIRI 2.1 * */ @XmlEnumValue("pti12_0") PTI_12_0("pti12_0"), /** * DEPRECATED since SIRI 2.1 * */ @XmlEnumValue("pti12_1") PTI_12_1("pti12_1"), /** * DEPRECATED since SIRI 2.1 * */ @XmlEnumValue("pti12_2") PTI_12_2("pti12_2"), /** * DEPRECATED since SIRI 2.1 * */ @XmlEnumValue("pti12_3") PTI_12_3("pti12_3"), /** * DEPRECATED since SIRI 2.1 * */ @XmlEnumValue("pti12_4") PTI_12_4("pti12_4"), /** * DEPRECATED since SIRI 2.1 * */ @XmlEnumValue("pti12_5") PTI_12_5("pti12_5"), /** * DEPRECATED since SIRI 2.1 * */ @XmlEnumValue("pti12_255") PTI_12_255("pti12_255"); private final String value; SelfDriveSubmodesOfTransportEnumeration(String v) { value = v; } public String value() { return value; } public static SelfDriveSubmodesOfTransportEnumeration fromValue(String v) { for (SelfDriveSubmodesOfTransportEnumeration c: SelfDriveSubmodesOfTransportEnumeration.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy