public static enum RouteTta.Detail extends java.lang.Enum<RouteTta.Detail>
Enum Constant and Description |
---|
BLOCKED_ROAD
A blocked road is present.
|
CARPOOL
A carpool restricted lane is present.
|
RESTRICTED_TURN
A restricted turn is present.
|
Modifier and Type | Method and Description |
---|---|
static RouteTta.Detail |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RouteTta.Detail[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RouteTta.Detail BLOCKED_ROAD
public static final RouteTta.Detail CARPOOL
public static final RouteTta.Detail RESTRICTED_TURN
public static RouteTta.Detail[] values()
for (RouteTta.Detail c : RouteTta.Detail.values()) System.out.println(c);
public static RouteTta.Detail 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