Enum LanesEnum

  • All Implemented Interfaces:
    Serializable, Comparable<LanesEnum>

    public enum LanesEnum
    extends Enum<LanesEnum>

    Java class for LanesEnum.

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

     <simpleType name="LanesEnum">
       <restriction base="{http://www.w3.org/2001/XMLSchema}string">
         <enumeration value="allLanesCompleteCarriageway"/>
         <enumeration value="busLane"/>
         <enumeration value="busStop"/>
         <enumeration value="carPoolLane"/>
         <enumeration value="centralReservation"/>
         <enumeration value="crawlerLane"/>
         <enumeration value="emergencyLane"/>
         <enumeration value="escapeLane"/>
         <enumeration value="expressLane"/>
         <enumeration value="hardShoulder"/>
         <enumeration value="heavyVehicleLane"/>
         <enumeration value="lane1"/>
         <enumeration value="lane2"/>
         <enumeration value="lane3"/>
         <enumeration value="lane4"/>
         <enumeration value="lane5"/>
         <enumeration value="lane6"/>
         <enumeration value="lane7"/>
         <enumeration value="lane8"/>
         <enumeration value="lane9"/>
         <enumeration value="layBy"/>
         <enumeration value="leftHandTurningLane"/>
         <enumeration value="leftLane"/>
         <enumeration value="localTrafficLane"/>
         <enumeration value="middleLane"/>
         <enumeration value="opposingLanes"/>
         <enumeration value="overtakingLane"/>
         <enumeration value="rightHandTurningLane"/>
         <enumeration value="rightLane"/>
         <enumeration value="rushHourLane"/>
         <enumeration value="setDownArea"/>
         <enumeration value="slowVehicleLane"/>
         <enumeration value="throughTrafficLane"/>
         <enumeration value="tidalFlowLane"/>
         <enumeration value="turningLane"/>
         <enumeration value="verge"/>
       </restriction>
     </simpleType>
     
    • Enum Constant Detail

      • ALL_LANES_COMPLETE_CARRIAGEWAY

        public static final LanesEnum ALL_LANES_COMPLETE_CARRIAGEWAY
        In all lanes of the carriageway.
      • BUS_LANE

        public static final LanesEnum BUS_LANE
        In the bus lane.
      • BUS_STOP

        public static final LanesEnum BUS_STOP
        In the bus stop lane.
      • CAR_POOL_LANE

        public static final LanesEnum CAR_POOL_LANE
        In the carpool lane.
      • CENTRAL_RESERVATION

        public static final LanesEnum CENTRAL_RESERVATION
        On the central median separating the two directional carriagways of the highway.
      • CRAWLER_LANE

        public static final LanesEnum CRAWLER_LANE
        In the crawler lane.
      • EMERGENCY_LANE

        public static final LanesEnum EMERGENCY_LANE
        In the emergency lane.
      • ESCAPE_LANE

        public static final LanesEnum ESCAPE_LANE
        In the escape lane.
      • EXPRESS_LANE

        public static final LanesEnum EXPRESS_LANE
        In the express lane.
      • HARD_SHOULDER

        public static final LanesEnum HARD_SHOULDER
        On the hard shoulder.
      • HEAVY_VEHICLE_LANE

        public static final LanesEnum HEAVY_VEHICLE_LANE
        In the heavy vehicle lane.
      • LANE_1

        public static final LanesEnum LANE_1
        In the first lane numbered from nearest the hard shoulder to central median.
      • LANE_2

        public static final LanesEnum LANE_2
        In the second lane numbered from nearest the hard shoulder to central median.
      • LANE_3

        public static final LanesEnum LANE_3
        In the third lane numbered from nearest the hard shoulder to central median.
      • LANE_4

        public static final LanesEnum LANE_4
        In the fourth lane numbered from nearest the hard shoulder to central median.
      • LANE_5

        public static final LanesEnum LANE_5
        In the fifth lane numbered from nearest the hard shoulder to central median.
      • LANE_6

        public static final LanesEnum LANE_6
        In the sixth lane numbered from nearest the hard shoulder to central median.
      • LANE_7

        public static final LanesEnum LANE_7
        In the seventh lane numbered from nearest the hard shoulder to central median.
      • LANE_8

        public static final LanesEnum LANE_8
        In the eighth lane numbered from nearest the hard shoulder to central median.
      • LANE_9

        public static final LanesEnum LANE_9
        In the ninth lane numbered from nearest the hard shoulder to central median.
      • LAY_BY

        public static final LanesEnum LAY_BY
        In a lay-by.
      • LEFT_HAND_TURNING_LANE

        public static final LanesEnum LEFT_HAND_TURNING_LANE
        In the left hand turning lane.
      • LEFT_LANE

        public static final LanesEnum LEFT_LANE
        In the left lane.
      • LOCAL_TRAFFIC_LANE

        public static final LanesEnum LOCAL_TRAFFIC_LANE
        In the local traffic lane.
      • MIDDLE_LANE

        public static final LanesEnum MIDDLE_LANE
        In the middle lane.
      • OPPOSING_LANES

        public static final LanesEnum OPPOSING_LANES
        In the opposing lanes.
      • OVERTAKING_LANE

        public static final LanesEnum OVERTAKING_LANE
        In the overtaking lane.
      • RIGHT_HAND_TURNING_LANE

        public static final LanesEnum RIGHT_HAND_TURNING_LANE
        In the right hand turning lane.
      • RIGHT_LANE

        public static final LanesEnum RIGHT_LANE
        In the right lane.
      • RUSH_HOUR_LANE

        public static final LanesEnum RUSH_HOUR_LANE
        In the lane dedicated for use during the rush (peak) hour.
      • SET_DOWN_AREA

        public static final LanesEnum SET_DOWN_AREA
        In the area/lane reserved for passenger pick-up or set-down.
      • SLOW_VEHICLE_LANE

        public static final LanesEnum SLOW_VEHICLE_LANE
        In the slow vehicle lane.
      • THROUGH_TRAFFIC_LANE

        public static final LanesEnum THROUGH_TRAFFIC_LANE
        In the through traffic lane.
      • TIDAL_FLOW_LANE

        public static final LanesEnum TIDAL_FLOW_LANE
        In the lane dedicated for use as a tidal flow lane.
      • TURNING_LANE

        public static final LanesEnum TURNING_LANE
        In the turning lane.
      • VERGE

        public static final LanesEnum VERGE
        On the verge.
    • Method Detail

      • values

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

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