public static enum Maneuver.Action extends java.lang.Enum<Maneuver.Action>
Maneuver
.Enum Constant and Description |
---|
CHANGE_HIGHWAY
An action that indicates changing from one highway to another.
|
CONTINUE_HIGHWAY
An action that indicates continuing along a highway.
|
END
An action that indicates the end of a route.
|
ENTER_HIGHWAY
An action that indicates entering a highway.
|
ENTER_HIGHWAY_FROM_LEFT
An action that indicates entering a highway from the left.
|
ENTER_HIGHWAY_FROM_RIGHT
An action that indicates entering a highway from the right.
|
FERRY
An action that indicates boarding a ferry.
|
INVALID
An invalid action.
|
JUNCTION
An action that indicates a junction.
|
LEAVE_HIGHWAY
An action that indicates leaving a highway.
|
NO_ACTION
An indication that there is no action associated with the maneuver.
|
PASS_JUNCTION
An action that indicates passing a junction.
|
ROUNDABOUT
An action that indicates a roundabout.
|
STOPOVER
An action that indicates a stopover.
|
UNDEFINED
An undefined action (the default), avoided for real maneuvers.
|
UTURN
An action that indicates a u-turn.
|
Modifier and Type | Method and Description |
---|---|
static Maneuver.Action |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Maneuver.Action[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Maneuver.Action UNDEFINED
public static final Maneuver.Action NO_ACTION
public static final Maneuver.Action END
public static final Maneuver.Action STOPOVER
public static final Maneuver.Action JUNCTION
public static final Maneuver.Action ROUNDABOUT
public static final Maneuver.Action UTURN
public static final Maneuver.Action ENTER_HIGHWAY_FROM_RIGHT
public static final Maneuver.Action ENTER_HIGHWAY_FROM_LEFT
public static final Maneuver.Action ENTER_HIGHWAY
public static final Maneuver.Action LEAVE_HIGHWAY
public static final Maneuver.Action CHANGE_HIGHWAY
public static final Maneuver.Action CONTINUE_HIGHWAY
public static final Maneuver.Action FERRY
public static final Maneuver.Action PASS_JUNCTION
public static final Maneuver.Action INVALID
public static Maneuver.Action[] values()
for (Maneuver.Action c : Maneuver.Action.values()) System.out.println(c);
public static Maneuver.Action 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