Enum TransitServiceInformationEnum
- java.lang.Object
-
- java.lang.Enum<TransitServiceInformationEnum>
-
- eu.datex2.siri20.schema._2_0rc1._2_0.TransitServiceInformationEnum
-
- All Implemented Interfaces:
Serializable,Comparable<TransitServiceInformationEnum>
public enum TransitServiceInformationEnum extends Enum<TransitServiceInformationEnum>
Java class for TransitServiceInformationEnum.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="TransitServiceInformationEnum"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="cancellations"/> <enumeration value="delayDueToBadWeather"/> <enumeration value="delayDueToRepairs"/> <enumeration value="delayedUntilFurtherNotice"/> <enumeration value="delaysDueToFlotsam"/> <enumeration value="departureOnSchedule"/> <enumeration value="ferryReplacedByIceRoad"/> <enumeration value="freeShuttleServiceOperating"/> <enumeration value="informationServiceNotAvailable"/> <enumeration value="irregularServiceDelays"/> <enumeration value="loadCapacityChanged"/> <enumeration value="restrictionsForLongerVehicles"/> <enumeration value="serviceDelays"/> <enumeration value="serviceDelaysOfUncertainDuration"/> <enumeration value="serviceFullyBooked"/> <enumeration value="serviceNotOperating"/> <enumeration value="serviceNotOperatingSubstituteServiceAvailable"/> <enumeration value="serviceSuspended"/> <enumeration value="serviceWithdrawn"/> <enumeration value="shuttleServiceOperating"/> <enumeration value="temporaryChangesToTimetables"/> <enumeration value="other"/> </restriction> </simpleType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TransitServiceInformationEnumfromValue(String v)Stringvalue()static TransitServiceInformationEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static TransitServiceInformationEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CANCELLATIONS
public static final TransitServiceInformationEnum CANCELLATIONS
-
DELAY_DUE_TO_BAD_WEATHER
public static final TransitServiceInformationEnum DELAY_DUE_TO_BAD_WEATHER
-
DELAY_DUE_TO_REPAIRS
public static final TransitServiceInformationEnum DELAY_DUE_TO_REPAIRS
-
DELAYED_UNTIL_FURTHER_NOTICE
public static final TransitServiceInformationEnum DELAYED_UNTIL_FURTHER_NOTICE
-
DELAYS_DUE_TO_FLOTSAM
public static final TransitServiceInformationEnum DELAYS_DUE_TO_FLOTSAM
-
DEPARTURE_ON_SCHEDULE
public static final TransitServiceInformationEnum DEPARTURE_ON_SCHEDULE
-
FERRY_REPLACED_BY_ICE_ROAD
public static final TransitServiceInformationEnum FERRY_REPLACED_BY_ICE_ROAD
-
FREE_SHUTTLE_SERVICE_OPERATING
public static final TransitServiceInformationEnum FREE_SHUTTLE_SERVICE_OPERATING
-
INFORMATION_SERVICE_NOT_AVAILABLE
public static final TransitServiceInformationEnum INFORMATION_SERVICE_NOT_AVAILABLE
-
IRREGULAR_SERVICE_DELAYS
public static final TransitServiceInformationEnum IRREGULAR_SERVICE_DELAYS
-
LOAD_CAPACITY_CHANGED
public static final TransitServiceInformationEnum LOAD_CAPACITY_CHANGED
-
RESTRICTIONS_FOR_LONGER_VEHICLES
public static final TransitServiceInformationEnum RESTRICTIONS_FOR_LONGER_VEHICLES
-
SERVICE_DELAYS
public static final TransitServiceInformationEnum SERVICE_DELAYS
-
SERVICE_DELAYS_OF_UNCERTAIN_DURATION
public static final TransitServiceInformationEnum SERVICE_DELAYS_OF_UNCERTAIN_DURATION
-
SERVICE_FULLY_BOOKED
public static final TransitServiceInformationEnum SERVICE_FULLY_BOOKED
-
SERVICE_NOT_OPERATING
public static final TransitServiceInformationEnum SERVICE_NOT_OPERATING
-
SERVICE_NOT_OPERATING_SUBSTITUTE_SERVICE_AVAILABLE
public static final TransitServiceInformationEnum SERVICE_NOT_OPERATING_SUBSTITUTE_SERVICE_AVAILABLE
-
SERVICE_SUSPENDED
public static final TransitServiceInformationEnum SERVICE_SUSPENDED
-
SERVICE_WITHDRAWN
public static final TransitServiceInformationEnum SERVICE_WITHDRAWN
-
SHUTTLE_SERVICE_OPERATING
public static final TransitServiceInformationEnum SHUTTLE_SERVICE_OPERATING
-
TEMPORARY_CHANGES_TO_TIMETABLES
public static final TransitServiceInformationEnum TEMPORARY_CHANGES_TO_TIMETABLES
-
OTHER
public static final TransitServiceInformationEnum OTHER
-
-
Method Detail
-
values
public static TransitServiceInformationEnum[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (TransitServiceInformationEnum c : TransitServiceInformationEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TransitServiceInformationEnum valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
value
public String value()
-
fromValue
public static TransitServiceInformationEnum fromValue(String v)
-
-