![JAR search and dependency download from the Maven repository](/logo.png)
uk.org.ifopt.siri21.CheckPointProcessEnumeration 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:41 PM UTC
//
package uk.org.ifopt.siri21;
import jakarta.xml.bind.annotation.XmlEnum;
import jakarta.xml.bind.annotation.XmlEnumValue;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for CheckPointProcessEnumeration.
*
*
The following schema fragment specifies the expected content contained within this class.
*
* <simpleType name="CheckPointProcessEnumeration">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="none"/>
* <enumeration value="unknown"/>
* <enumeration value="ticketPurchase"/>
* <enumeration value="ticketCollection"/>
* <enumeration value="ticketValidation"/>
* <enumeration value="baggageCheckIn"/>
* <enumeration value="oversizeBaggageCheckIn"/>
* <enumeration value="oversizeBaggageReclaim"/>
* <enumeration value="baggageReclaim"/>
* <enumeration value="leftLuggageDeposit"/>
* <enumeration value="leftLuggageReclaim"/>
* <enumeration value="firstclassCheckin"/>
* <enumeration value="specialNeedsCheckin"/>
* <enumeration value="baggageSecurityCheck"/>
* <enumeration value="securityCheck"/>
* <enumeration value="outgoingPassportControl"/>
* <enumeration value="incomingPassportControl"/>
* <enumeration value="fasttrackDepartures"/>
* <enumeration value="fasttrackArrivals"/>
* <enumeration value="incomingDutyFree"/>
* <enumeration value="outgoingDutyFree"/>
* <enumeration value="taxRefunds"/>
* <enumeration value="outgoingCustoms"/>
* <enumeration value="incomingCustoms"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "CheckPointProcessEnumeration")
@XmlEnum
public enum CheckPointProcessEnumeration {
@XmlEnumValue("none")
NONE("none"),
@XmlEnumValue("unknown")
UNKNOWN("unknown"),
@XmlEnumValue("ticketPurchase")
TICKET_PURCHASE("ticketPurchase"),
@XmlEnumValue("ticketCollection")
TICKET_COLLECTION("ticketCollection"),
@XmlEnumValue("ticketValidation")
TICKET_VALIDATION("ticketValidation"),
@XmlEnumValue("baggageCheckIn")
BAGGAGE_CHECK_IN("baggageCheckIn"),
@XmlEnumValue("oversizeBaggageCheckIn")
OVERSIZE_BAGGAGE_CHECK_IN("oversizeBaggageCheckIn"),
@XmlEnumValue("oversizeBaggageReclaim")
OVERSIZE_BAGGAGE_RECLAIM("oversizeBaggageReclaim"),
@XmlEnumValue("baggageReclaim")
BAGGAGE_RECLAIM("baggageReclaim"),
@XmlEnumValue("leftLuggageDeposit")
LEFT_LUGGAGE_DEPOSIT("leftLuggageDeposit"),
@XmlEnumValue("leftLuggageReclaim")
LEFT_LUGGAGE_RECLAIM("leftLuggageReclaim"),
@XmlEnumValue("firstclassCheckin")
FIRSTCLASS_CHECKIN("firstclassCheckin"),
@XmlEnumValue("specialNeedsCheckin")
SPECIAL_NEEDS_CHECKIN("specialNeedsCheckin"),
@XmlEnumValue("baggageSecurityCheck")
BAGGAGE_SECURITY_CHECK("baggageSecurityCheck"),
@XmlEnumValue("securityCheck")
SECURITY_CHECK("securityCheck"),
@XmlEnumValue("outgoingPassportControl")
OUTGOING_PASSPORT_CONTROL("outgoingPassportControl"),
@XmlEnumValue("incomingPassportControl")
INCOMING_PASSPORT_CONTROL("incomingPassportControl"),
@XmlEnumValue("fasttrackDepartures")
FASTTRACK_DEPARTURES("fasttrackDepartures"),
@XmlEnumValue("fasttrackArrivals")
FASTTRACK_ARRIVALS("fasttrackArrivals"),
@XmlEnumValue("incomingDutyFree")
INCOMING_DUTY_FREE("incomingDutyFree"),
@XmlEnumValue("outgoingDutyFree")
OUTGOING_DUTY_FREE("outgoingDutyFree"),
@XmlEnumValue("taxRefunds")
TAX_REFUNDS("taxRefunds"),
@XmlEnumValue("outgoingCustoms")
OUTGOING_CUSTOMS("outgoingCustoms"),
@XmlEnumValue("incomingCustoms")
INCOMING_CUSTOMS("incomingCustoms");
private final String value;
CheckPointProcessEnumeration(String v) {
value = v;
}
public String value() {
return value;
}
public static CheckPointProcessEnumeration fromValue(String v) {
for (CheckPointProcessEnumeration c: CheckPointProcessEnumeration.values()) {
if (c.value.equals(v)) {
return c;
}
}
throw new IllegalArgumentException(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy