Enum 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="delaysDueToFlotsum"/>
         <enumeration value="departureOnSchedule"/>
         <enumeration value="ferryDelayed"/>
         <enumeration value="ferryLoadCapacityChanged"/>
         <enumeration value="ferryReplacedByIceRoad"/>
         <enumeration value="ferryServiceNotOperating"/>
         <enumeration value="ferryServicesIrregularDelays"/>
         <enumeration value="freeShuttleServiceOperating"/>
         <enumeration value="railInformationServiceNotAvailable"/>
         <enumeration value="railServicesIrregularDelays"/>
         <enumeration value="railServiceNotOperating"/>
         <enumeration value="rapidTransitInformationServiceNotAvailable"/>
         <enumeration value="restrictionsForLongerVehicles"/>
         <enumeration value="serviceDelays"/>
         <enumeration value="serviceDelaysOfUncertainDuration"/>
         <enumeration value="serviceFullyBooked"/>
         <enumeration value="serviceNotOperatingSubstituteServiceAvailable"/>
         <enumeration value="serviceSuspended"/>
         <enumeration value="serviceWithdrawn"/>
         <enumeration value="shuttleServiceOperating"/>
         <enumeration value="temporaryChangesToTimetables"/>
         <enumeration value="other"/>
       </restriction>
     </simpleType>
     
    • Enum Constant Detail

      • CANCELLATIONS

        public static final TransitServiceInformationEnum CANCELLATIONS
        Public transport, park-and-ride, rail or bus services will be cancelled until the specified time.
      • DELAY_DUE_TO_BAD_WEATHER

        public static final TransitServiceInformationEnum DELAY_DUE_TO_BAD_WEATHER
        The specified service is delayed due to bad weather.
      • DELAY_DUE_TO_REPAIRS

        public static final TransitServiceInformationEnum DELAY_DUE_TO_REPAIRS
        The specified service is delayed due to the need for repairs.
      • DELAYED_UNTIL_FURTHER_NOTICE

        public static final TransitServiceInformationEnum DELAYED_UNTIL_FURTHER_NOTICE
        The specified public transport service will be delayed until further notice.
      • DELAYS_DUE_TO_FLOTSUM

        public static final TransitServiceInformationEnum DELAYS_DUE_TO_FLOTSUM
        The departure of the specified ferry service is delayed due to flotsum.
      • DEPARTURE_ON_SCHEDULE

        public static final TransitServiceInformationEnum DEPARTURE_ON_SCHEDULE
        The departure of the specified service is on schedule.
      • FERRY_LOAD_CAPACITY_CHANGED

        public static final TransitServiceInformationEnum FERRY_LOAD_CAPACITY_CHANGED
        The load capacity of the ferry operating the specified service has been changed.
      • FERRY_REPLACED_BY_ICE_ROAD

        public static final TransitServiceInformationEnum FERRY_REPLACED_BY_ICE_ROAD
        The ferry service has been replaced by an ice road.
      • FERRY_SERVICE_NOT_OPERATING

        public static final TransitServiceInformationEnum FERRY_SERVICE_NOT_OPERATING
        The specified ferry service is not operating until the specified time.
      • FERRY_SERVICES_IRREGULAR_DELAYS

        public static final TransitServiceInformationEnum FERRY_SERVICES_IRREGULAR_DELAYS
        The specified ferry service is subject to irregular delays.
      • FREE_SHUTTLE_SERVICE_OPERATING

        public static final TransitServiceInformationEnum FREE_SHUTTLE_SERVICE_OPERATING
        A shuttle service is operating at no charge between specified locations until the specified time.
      • RAIL_INFORMATION_SERVICE_NOT_AVAILABLE

        public static final TransitServiceInformationEnum RAIL_INFORMATION_SERVICE_NOT_AVAILABLE
        The information service relating to the rail transport system is not currently available.
      • RAIL_SERVICES_IRREGULAR_DELAYS

        public static final TransitServiceInformationEnum RAIL_SERVICES_IRREGULAR_DELAYS
        The specified rail service is running at irregular intervals and delays are expected for passengers.
      • RAIL_SERVICE_NOT_OPERATING

        public static final TransitServiceInformationEnum RAIL_SERVICE_NOT_OPERATING
        The specified rail service is not operating until the specified time.
      • RAPID_TRANSIT_INFORMATION_SERVICE_NOT_AVAILABLE

        public static final TransitServiceInformationEnum RAPID_TRANSIT_INFORMATION_SERVICE_NOT_AVAILABLE
        The information service relating to the rapid transit system is not currently available.
      • RESTRICTIONS_FOR_LONGER_VEHICLES

        public static final TransitServiceInformationEnum RESTRICTIONS_FOR_LONGER_VEHICLES
        Long vehicles are subject to restrictions on the specified service.
      • SERVICE_DELAYS_OF_UNCERTAIN_DURATION

        public static final TransitServiceInformationEnum SERVICE_DELAYS_OF_UNCERTAIN_DURATION
        The specified service is subject to delays whose predicted duration cannot be estimated accurately.
      • SERVICE_FULLY_BOOKED

        public static final TransitServiceInformationEnum SERVICE_FULLY_BOOKED
        The departure of the specified service is fully booked.
      • SERVICE_NOT_OPERATING_SUBSTITUTE_SERVICE_AVAILABLE

        public static final TransitServiceInformationEnum SERVICE_NOT_OPERATING_SUBSTITUTE_SERVICE_AVAILABLE
        The specified service is not operating but an alternative service is available.
      • SERVICE_SUSPENDED

        public static final TransitServiceInformationEnum SERVICE_SUSPENDED
        The specified service has been suspended until the specified time.
      • SHUTTLE_SERVICE_OPERATING

        public static final TransitServiceInformationEnum SHUTTLE_SERVICE_OPERATING
        A shuttle service is operating between the specified locations until the specified time.
      • TEMPORARY_CHANGES_TO_TIMETABLES

        public static final TransitServiceInformationEnum TEMPORARY_CHANGES_TO_TIMETABLES
        The timetable for the specified service is subject to temporary changes.
    • 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 name
        NullPointerException - if the argument is null
      • value

        public String value()