public static enum Maneuver.Type extends java.lang.Enum<Maneuver.Type>
Enum Constant and Description |
---|
DESTINATION |
ENTER_ROUNDABOUT |
EXIT_ROUNDABOUT |
LEFT |
LEFT_FORK |
LEFT_MERGE |
LEFT_OFF_RAMP |
LEFT_ON_RAMP |
LEFT_UTURN |
MERGE |
RIGHT |
RIGHT_FORK |
RIGHT_MERGE |
RIGHT_OFF_RAMP |
RIGHT_ON_RAMP |
RIGHT_UTURN |
SHARP_LEFT |
SHARP_RIGHT |
SLIGHT_LEFT |
SLIGHT_RIGHT |
START |
STRAIGHT |
STRAIGHT_FORK |
Modifier and Type | Method and Description |
---|---|
static Maneuver.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Maneuver.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Maneuver.Type STRAIGHT
public static final Maneuver.Type SLIGHT_RIGHT
public static final Maneuver.Type RIGHT
public static final Maneuver.Type SHARP_RIGHT
public static final Maneuver.Type SHARP_LEFT
public static final Maneuver.Type LEFT
public static final Maneuver.Type SLIGHT_LEFT
public static final Maneuver.Type LEFT_UTURN
public static final Maneuver.Type RIGHT_UTURN
public static final Maneuver.Type RIGHT_MERGE
public static final Maneuver.Type LEFT_MERGE
public static final Maneuver.Type MERGE
public static final Maneuver.Type RIGHT_ON_RAMP
public static final Maneuver.Type LEFT_ON_RAMP
public static final Maneuver.Type RIGHT_OFF_RAMP
public static final Maneuver.Type LEFT_OFF_RAMP
public static final Maneuver.Type RIGHT_FORK
public static final Maneuver.Type LEFT_FORK
public static final Maneuver.Type STRAIGHT_FORK
public static final Maneuver.Type DESTINATION
public static final Maneuver.Type START
public static final Maneuver.Type ENTER_ROUNDABOUT
public static final Maneuver.Type EXIT_ROUNDABOUT
public static Maneuver.Type[] values()
for (Maneuver.Type c : Maneuver.Type.values()) System.out.println(c);
public static Maneuver.Type 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