public enum BookingProcessEnumeration extends Enum<BookingProcessEnumeration>
Java class for BookingProcessEnumeration.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="BookingProcessEnumeration">
<restriction base="{http://www.w3.org/2001/XMLSchema}normalizedString">
<enumeration value="productNotAvailable"/>
<enumeration value="productNotBookable"/>
<enumeration value="bookableThroughInternationalSystem"/>
<enumeration value="bookableThroughNationalSystem"/>
<enumeration value="bookableManuallly"/>
<enumeration value="other"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
BOOKABLE_MANUALLLY |
BOOKABLE_THROUGH_INTERNATIONAL_SYSTEM |
BOOKABLE_THROUGH_NATIONAL_SYSTEM |
OTHER |
PRODUCT_NOT_AVAILABLE |
PRODUCT_NOT_BOOKABLE |
| Modifier and Type | Method and Description |
|---|---|
static BookingProcessEnumeration |
fromValue(String v) |
String |
value() |
static BookingProcessEnumeration |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BookingProcessEnumeration[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BookingProcessEnumeration PRODUCT_NOT_AVAILABLE
public static final BookingProcessEnumeration PRODUCT_NOT_BOOKABLE
public static final BookingProcessEnumeration BOOKABLE_THROUGH_INTERNATIONAL_SYSTEM
public static final BookingProcessEnumeration BOOKABLE_THROUGH_NATIONAL_SYSTEM
public static final BookingProcessEnumeration BOOKABLE_MANUALLLY
public static final BookingProcessEnumeration OTHER
public static BookingProcessEnumeration[] values()
for (BookingProcessEnumeration c : BookingProcessEnumeration.values()) System.out.println(c);
public static BookingProcessEnumeration valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String value()
public static BookingProcessEnumeration fromValue(String v)
Copyright © 2018 Entur AS. All rights reserved.