public static enum Maneuver.Turn extends java.lang.Enum<Maneuver.Turn>
Maneuver
.Enum Constant and Description |
---|
HEAVY_LEFT
A turn that indicates making a heavy left turn.
|
HEAVY_RIGHT
A turn that indicates making a heavy right turn.
|
KEEP_LEFT
A turn that indicates keeping to the left when a road forks.
|
KEEP_MIDDLE
A turn that indicates keeping to the middle when a road forks.
|
KEEP_RIGHT
A turn that indicates keeping to the right when a road forks.
|
LIGHT_LEFT
A turn that indicates making a light left turn.
|
LIGHT_RIGHT
A turn that indicates making a light right turn.
|
NO_TURN
Indicates that no turn is necessary.
|
QUITE_LEFT
A turn that indicates making a normal left turn.
|
QUITE_RIGHT
A turn that indicates making a normal right turn.
|
RETURN
A turn that indicates turning around or making a U-turn.
|
ROUNDABOUT_1
A turn that indicates taking the first exit in a roundabout.
|
ROUNDABOUT_10
A turn that indicates taking the tenth exit in a roundabout.
|
ROUNDABOUT_11
A turn that indicates taking the eleventh exit in a roundabout.
|
ROUNDABOUT_12
A turn that indicates taking the twelfth exit in a roundabout.
|
ROUNDABOUT_2
A turn that indicates taking the second exit in a roundabout.
|
ROUNDABOUT_3
A turn that indicates taking the third exit in a roundabout.
|
ROUNDABOUT_4
A turn that indicates taking the fourth exit in a roundabout.
|
ROUNDABOUT_5
A turn that indicates taking the fifth exit in a roundabout.
|
ROUNDABOUT_6
A turn that indicates taking the sixth exit in a roundabout.
|
ROUNDABOUT_7
A turn that indicates taking the seventh exit in a roundabout.
|
ROUNDABOUT_8
A turn that indicates taking the eighth exit in a roundabout.
|
ROUNDABOUT_9
A turn that indicates taking the ninth exit in a roundabout.
|
UNDEFINED
An undefined turn.
|
Modifier and Type | Method and Description |
---|---|
static Maneuver.Turn |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Maneuver.Turn[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Maneuver.Turn UNDEFINED
public static final Maneuver.Turn NO_TURN
public static final Maneuver.Turn KEEP_MIDDLE
public static final Maneuver.Turn KEEP_RIGHT
public static final Maneuver.Turn LIGHT_RIGHT
public static final Maneuver.Turn QUITE_RIGHT
public static final Maneuver.Turn HEAVY_RIGHT
public static final Maneuver.Turn KEEP_LEFT
public static final Maneuver.Turn LIGHT_LEFT
public static final Maneuver.Turn QUITE_LEFT
public static final Maneuver.Turn HEAVY_LEFT
public static final Maneuver.Turn RETURN
public static final Maneuver.Turn ROUNDABOUT_1
public static final Maneuver.Turn ROUNDABOUT_2
public static final Maneuver.Turn ROUNDABOUT_3
public static final Maneuver.Turn ROUNDABOUT_4
public static final Maneuver.Turn ROUNDABOUT_5
public static final Maneuver.Turn ROUNDABOUT_6
public static final Maneuver.Turn ROUNDABOUT_7
public static final Maneuver.Turn ROUNDABOUT_8
public static final Maneuver.Turn ROUNDABOUT_9
public static final Maneuver.Turn ROUNDABOUT_10
public static final Maneuver.Turn ROUNDABOUT_11
public static final Maneuver.Turn ROUNDABOUT_12
public static Maneuver.Turn[] values()
for (Maneuver.Turn c : Maneuver.Turn.values()) System.out.println(c);
public static Maneuver.Turn 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