Enum PointRteAction
-
- All Implemented Interfaces:
-
java.io.Serializable,kotlin.Comparable
public enum PointRteAction extends Enum<PointRteAction>
Possible actions for Route navigation point.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public classPointRteAction.Companion
-
Enum Constant Summary
Enum Constants Enum Constant Description UNDEFINEDSpecial action that serve as fallback if no valid action is defined/found.
NO_MANEUVERNo maneuver occurs here.
CONTINUE_STRAIGHTContinue straight.
NO_MANEUVER_NAME_CHANGENo maneuver occurs here. Road name changes.
LEFT_SLIGHTMake a slight left.
LEFTTurn left.
LEFT_SHARPMake a sharp left.
RIGHT_SLIGHTMake a slight right.
RIGHTTurn right.
RIGHT_SHARPMake a sharp right.
STAY_LEFTStay left.
STAY_RIGHTStay right.
STAY_STRAIGHTStay straight.
U_TURNMake a U-turn.
U_TURN_LEFTMake a left U-turn.
U_TURN_RIGHTMake a right U-turn.
EXIT_LEFTExit left.
EXIT_RIGHTExit right.
RAMP_ON_LEFTTake the ramp on the left.
RAMP_ON_RIGHTTake the ramp on the right.
RAMP_STRAIGHTTake the ramp straight ahead.
MERGE_LEFTMerge left.
MERGE_RIGHTMerge right.
MERGEMerge.
ENTER_STATEEnter state/province.
ARRIVE_DESTArrive at your destination.
ARRIVE_DEST_LEFTArrive at your destination on the left.
ARRIVE_DEST_RIGHTArrive at your destination on the right.
ROUNDABOUT_EXIT_1Enter the roundabout and take the 1st exit.
ROUNDABOUT_EXIT_2Enter the roundabout and take the 2nd exit.
ROUNDABOUT_EXIT_3Enter the roundabout and take the 3rd exit.
ROUNDABOUT_EXIT_4Enter the roundabout and take the 4th exit.
ROUNDABOUT_EXIT_5Enter the roundabout and take the 5th exit.
ROUNDABOUT_EXIT_6Enter the roundabout and take the 6th exit.
ROUNDABOUT_EXIT_7Enter the roundabout and take the 7th exit.
ROUNDABOUT_EXIT_8Enter the roundabout and take the 8th exit.
PASS_PLACEPass POI.
-
Method Summary
Modifier and Type Method Description final PointRteActionvalueOf(String value)Returns the enum constant of this type with the specified name. final Array<PointRteAction>values()Returns an array containing the constants of this enum type, in the order they're declared. final IntegergetId()Unique ID of action final StringgetTextId()Text ID representation -
-
Method Detail
-
valueOf
final PointRteAction valueOf(String value)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
- Parameters:
value- id of item
-
values
final Array<PointRteAction> values()
Returns an array containing the constants of this enum type, in the order they're declared.
This method may be used to iterate over the constants.
-
-
-
-