public static enum Route.Action extends Enum<Route.Action>
Enum Constant and Description |
---|
ARRIVE |
CONTINUE |
DEPART |
EXIT |
FERRY |
FORK |
MERGE |
NAME_CHANGE |
RAMP |
ROUNDABOUT |
TRAFFIC_CIRCLE |
TURN |
Modifier and Type | Method and Description |
---|---|
static Route.Action |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Route.Action[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Route.Action DEPART
public static final Route.Action ARRIVE
public static final Route.Action TURN
public static final Route.Action CONTINUE
public static final Route.Action EXIT
public static final Route.Action RAMP
public static final Route.Action FORK
public static final Route.Action MERGE
public static final Route.Action NAME_CHANGE
public static final Route.Action TRAFFIC_CIRCLE
public static final Route.Action FERRY
public static final Route.Action ROUNDABOUT
public static Route.Action[] values()
for (Route.Action c : Route.Action.values()) System.out.println(c);
public static Route.Action 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 null