public enum LaneMarkingType extends java.lang.Enum<LaneMarkingType>
Enum Constant and Description |
---|
LEFT |
LEFT_U_TURN |
RIGHT |
RIGHT_U_TURN |
SHARP_LEFT |
SHARP_RIGHT |
SLIGHT_LEFT |
SLIGHT_RIGHT |
STRAIGHT |
Modifier and Type | Method and Description |
---|---|
static LaneMarkingType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LaneMarkingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LaneMarkingType STRAIGHT
public static final LaneMarkingType SLIGHT_RIGHT
public static final LaneMarkingType RIGHT
public static final LaneMarkingType SHARP_RIGHT
public static final LaneMarkingType RIGHT_U_TURN
public static final LaneMarkingType SLIGHT_LEFT
public static final LaneMarkingType LEFT
public static final LaneMarkingType SHARP_LEFT
public static final LaneMarkingType LEFT_U_TURN
public static LaneMarkingType[] values()
for (LaneMarkingType c : LaneMarkingType.values()) System.out.println(c);
public static LaneMarkingType 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 null