Enum NetworkManagementTypeEnum

  • All Implemented Interfaces:
    Serializable, Comparable<NetworkManagementTypeEnum>

    public enum NetworkManagementTypeEnum
    extends Enum<NetworkManagementTypeEnum>

    Java class for NetworkManagementTypeEnum.

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

     <simpleType name="NetworkManagementTypeEnum">
       <restriction base="{http://www.w3.org/2001/XMLSchema}string">
         <enumeration value="bridgeSwingInOperation"/>
         <enumeration value="carPoolLaneInOperation"/>
         <enumeration value="closedPermanentlyForTheWinter"/>
         <enumeration value="contraflow"/>
         <enumeration value="convoyServiceDueToBadWeather"/>
         <enumeration value="intermittentClosures"/>
         <enumeration value="intermittentShortTermClosures"/>
         <enumeration value="laneOrCarriagewayClosed"/>
         <enumeration value="narrowLanes"/>
         <enumeration value="noOvertaking"/>
         <enumeration value="noThroughTraffic"/>
         <enumeration value="overnightClosures"/>
         <enumeration value="restrictions"/>
         <enumeration value="roadClosed"/>
         <enumeration value="rushHourLaneInOperation"/>
         <enumeration value="singleAlternateLineTraffic"/>
         <enumeration value="tidalFlowLaneInOperation"/>
         <enumeration value="trafficContolInOperation"/>
         <enumeration value="trafficHeld"/>
         <enumeration value="useOfSpecifiedLaneAllowed"/>
         <enumeration value="useSpecifiedLane"/>
         <enumeration value="useUnderSpecifiedRestrictions"/>
         <enumeration value="other"/>
       </restriction>
     </simpleType>
     
    • Enum Constant Detail

      • BRIDGE_SWING_IN_OPERATION

        public static final NetworkManagementTypeEnum BRIDGE_SWING_IN_OPERATION
        The bridge at the specified location has swung or lifted and is therfore temporarily closed to traffic.
      • CAR_POOL_LANE_IN_OPERATION

        public static final NetworkManagementTypeEnum CAR_POOL_LANE_IN_OPERATION
        Dedicated car pool lane(s) are in operation for vehicles carrying at least the specified number of occupants.
      • CLOSED_PERMANENTLY_FOR_THE_WINTER

        public static final NetworkManagementTypeEnum CLOSED_PERMANENTLY_FOR_THE_WINTER
        The road is closed to vehicles with the specified characteristics or all, if none defined, for the duration of the winter.
      • CONTRAFLOW

        public static final NetworkManagementTypeEnum CONTRAFLOW
        Two-way traffic is temporarily sharing a single carriageway.
      • CONVOY_SERVICE_DUE_TO_BAD_WEATHER

        public static final NetworkManagementTypeEnum CONVOY_SERVICE_DUE_TO_BAD_WEATHER
        Traffic is only possible in convoys due to bad weather conditions.
      • INTERMITTENT_CLOSURES

        public static final NetworkManagementTypeEnum INTERMITTENT_CLOSURES
        Road closures occur intermittently on the specified road in the specified direction.
      • INTERMITTENT_SHORT_TERM_CLOSURES

        public static final NetworkManagementTypeEnum INTERMITTENT_SHORT_TERM_CLOSURES
        Road closures occur intermittently on the specified road in the specified direction for short durations.
      • LANE_OR_CARRIAGEWAY_CLOSED

        public static final NetworkManagementTypeEnum LANE_OR_CARRIAGEWAY_CLOSED
        One or more lanes or carriageways (as specified in the location elements) are closed to vehicles with the specified characteristics or all, if none defined, in the specified direction.
      • NO_OVERTAKING

        public static final NetworkManagementTypeEnum NO_OVERTAKING
        Overtaking is prohibited for vehicles with the specified characteristics or all, if none defined, on the specified section of road.
      • NO_THROUGH_TRAFFIC

        public static final NetworkManagementTypeEnum NO_THROUGH_TRAFFIC
        The road is closed to vehicles with the specified characteristics or all, if none defined, in the specified direction, except for local access.
      • OVERNIGHT_CLOSURES

        public static final NetworkManagementTypeEnum OVERNIGHT_CLOSURES
        Every night the road is closed to vehicles with the specified characteristics or all, if none defined, in the specified direction by decision of the appropriate authorities.
      • RESTRICTIONS

        public static final NetworkManagementTypeEnum RESTRICTIONS
        Restrictions different from the normal highway restrictions have been imposed on specific sections of the road.
      • ROAD_CLOSED

        public static final NetworkManagementTypeEnum ROAD_CLOSED
        The road is closed to vehicles with the specified characteristics or all, if none defined, in the specified direction.
      • RUSH_HOUR_LANE_IN_OPERATION

        public static final NetworkManagementTypeEnum RUSH_HOUR_LANE_IN_OPERATION
        Dedicated rush (peak) hour lane(s) are in operation.
      • SINGLE_ALTERNATE_LINE_TRAFFIC

        public static final NetworkManagementTypeEnum SINGLE_ALTERNATE_LINE_TRAFFIC
        Traffic is being controlled to move in alternate single lines. This control may be undertaken by traffic lights or flagman. Congestion is expected.
      • TIDAL_FLOW_LANE_IN_OPERATION

        public static final NetworkManagementTypeEnum TIDAL_FLOW_LANE_IN_OPERATION
        Dedicated tidal flow lane(s) are in operation in the specified direction.
      • TRAFFIC_CONTOL_IN_OPERATION

        public static final NetworkManagementTypeEnum TRAFFIC_CONTOL_IN_OPERATION
        Traffic control measures are in operation.
      • TRAFFIC_HELD

        public static final NetworkManagementTypeEnum TRAFFIC_HELD
        Traffic in the specified direction is temporarily held up due to an unplanned event (e.g. for clearance of wreckage following an accident).
      • USE_OF_SPECIFIED_LANE_ALLOWED

        public static final NetworkManagementTypeEnum USE_OF_SPECIFIED_LANE_ALLOWED
        All vehicles may currently use the specified lane (as defined by the location elements). The normal lane restrictions are not currently in force.
      • USE_SPECIFIED_LANE

        public static final NetworkManagementTypeEnum USE_SPECIFIED_LANE
        Use the specified lane (as defined by the location elements).
      • USE_UNDER_SPECIFIED_RESTRICTIONS

        public static final NetworkManagementTypeEnum USE_UNDER_SPECIFIED_RESTRICTIONS
        Vehicles satisfying the defined restrictions may use the specified lane (as defined by the location elements).
    • Method Detail

      • values

        public static NetworkManagementTypeEnum[] 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 (NetworkManagementTypeEnum c : NetworkManagementTypeEnum.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static NetworkManagementTypeEnum 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()