public enum LaneEnum extends java.lang.Enum<LaneEnum>
Java class for LaneEnum.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="LaneEnum"> <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 and Description |
---|
ALL_LANES_COMPLETE_CARRIAGEWAY
In all lanes of the carriageway.
|
BUS_LANE
In the bus lane.
|
BUS_STOP
In the bus stop lane.
|
CAR_POOL_LANE
In the carpool lane.
|
CENTRAL_RESERVATION
On the central median separating the two directional carriageways of the highway.
|
CRAWLER_LANE
In the crawler lane.
|
EMERGENCY_LANE
In the emergency lane.
|
ESCAPE_LANE
In the escape lane.
|
EXPRESS_LANE
In the express lane.
|
HARD_SHOULDER
On the hard shoulder.
|
HEAVY_VEHICLE_LANE
In the heavy vehicle lane.
|
LANE_1
In the first lane numbered from nearest the hard shoulder to central median.
|
LANE_2
In the second lane numbered from nearest the hard shoulder to central median.
|
LANE_3
In the third lane numbered from nearest the hard shoulder to central median.
|
LANE_4
In the fourth lane numbered from nearest the hard shoulder to central median.
|
LANE_5
In the fifth lane numbered from nearest the hard shoulder to central median.
|
LANE_6
In the sixth lane numbered from nearest the hard shoulder to central median.
|
LANE_7
In the seventh lane numbered from nearest the hard shoulder to central median.
|
LANE_8
In the eighth lane numbered from nearest the hard shoulder to central median.
|
LANE_9
In the ninth lane numbered from nearest the hard shoulder to central median.
|
LAY_BY
In a lay-by.
|
LEFT_HAND_TURNING_LANE
In the left hand turning lane.
|
LEFT_LANE
In the left lane.
|
LOCAL_TRAFFIC_LANE
In the local traffic lane.
|
MIDDLE_LANE
In the middle lane.
|
OPPOSING_LANES
In the opposing lanes.
|
OVERTAKING_LANE
In the overtaking lane.
|
RIGHT_HAND_TURNING_LANE
In the right hand turning lane.
|
RIGHT_LANE
In the right lane.
|
RUSH_HOUR_LANE
In the lane dedicated for use during the rush (peak) hour.
|
SET_DOWN_AREA
In the area/lane reserved for passenger pick-up or set-down.
|
SLOW_VEHICLE_LANE
In the slow vehicle lane.
|
THROUGH_TRAFFIC_LANE
In the through traffic lane.
|
TIDAL_FLOW_LANE
In the lane dedicated for use as a tidal flow lane.
|
TURNING_LANE
In the turning lane.
|
VERGE
On the verge.
|
Modifier and Type | Field and Description |
---|---|
private java.lang.String |
value |
Modifier and Type | Method and Description |
---|---|
static LaneEnum |
fromValue(java.lang.String v) |
java.lang.String |
value() |
static LaneEnum |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LaneEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LaneEnum ALL_LANES_COMPLETE_CARRIAGEWAY
public static final LaneEnum BUS_LANE
public static final LaneEnum BUS_STOP
public static final LaneEnum CAR_POOL_LANE
public static final LaneEnum CENTRAL_RESERVATION
public static final LaneEnum CRAWLER_LANE
public static final LaneEnum EMERGENCY_LANE
public static final LaneEnum ESCAPE_LANE
public static final LaneEnum EXPRESS_LANE
public static final LaneEnum HARD_SHOULDER
public static final LaneEnum HEAVY_VEHICLE_LANE
public static final LaneEnum LANE_1
public static final LaneEnum LANE_2
public static final LaneEnum LANE_3
public static final LaneEnum LANE_4
public static final LaneEnum LANE_5
public static final LaneEnum LANE_6
public static final LaneEnum LANE_7
public static final LaneEnum LANE_8
public static final LaneEnum LANE_9
public static final LaneEnum LAY_BY
public static final LaneEnum LEFT_HAND_TURNING_LANE
public static final LaneEnum LEFT_LANE
public static final LaneEnum LOCAL_TRAFFIC_LANE
public static final LaneEnum MIDDLE_LANE
public static final LaneEnum OPPOSING_LANES
public static final LaneEnum OVERTAKING_LANE
public static final LaneEnum RIGHT_HAND_TURNING_LANE
public static final LaneEnum RIGHT_LANE
public static final LaneEnum RUSH_HOUR_LANE
public static final LaneEnum SET_DOWN_AREA
public static final LaneEnum SLOW_VEHICLE_LANE
public static final LaneEnum THROUGH_TRAFFIC_LANE
public static final LaneEnum TIDAL_FLOW_LANE
public static final LaneEnum TURNING_LANE
public static final LaneEnum VERGE
public static LaneEnum[] values()
for (LaneEnum c : LaneEnum.values()) System.out.println(c);
public static LaneEnum valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String value()
public static LaneEnum fromValue(java.lang.String v)