public enum LaneEnum extends java.lang.Enum<LaneEnum>
Java-Klasse für LaneEnum.
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
<simpleType name="LaneEnum">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="allLanesCompleteCarriageway"/>
<enumeration value="hardShoulder"/>
<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="leftLane"/>
<enumeration value="rightLane"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
ALL_LANES_COMPLETE_CARRIAGEWAY
In all lanes of the carriageway.
|
HARD_SHOULDER
On the hard shoulder.
|
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.
|
LEFT_LANE
In the left lane.
|
RIGHT_LANE
In the right lane.
|
| 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 HARD_SHOULDER
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 LEFT_LANE
public static final LaneEnum RIGHT_LANE
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)