public enum NavigationAction extends Enum<NavigationAction>
| Enum Constant and Description |
|---|
CAR_SHUTTLE_TRAIN |
EXIT |
FERRY |
MERGE |
STAY |
TURN
Using this action plus a supplied direction can give the type of turn.
|
WAYPOINT |
| Modifier and Type | Method and Description |
|---|---|
static NavigationAction |
valueForString(String value) |
static NavigationAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NavigationAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NavigationAction TURN
public static final NavigationAction EXIT
public static final NavigationAction STAY
public static final NavigationAction MERGE
public static final NavigationAction FERRY
public static final NavigationAction CAR_SHUTTLE_TRAIN
public static final NavigationAction WAYPOINT
public static NavigationAction[] values()
for (NavigationAction c : NavigationAction.values()) System.out.println(c);
public static NavigationAction valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static NavigationAction valueForString(String value)