Package com.here.sdk.routing
Enum Class IndoorManeuverActions
- All Implemented Interfaces:
Serializable,Comparable<IndoorManeuverActions>,Constable
Defines the types of actions for indoor maneuvers.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionEnd of the route.Continue on the current path.Start the route.Enter a space or area.Leave a space or area.Exit to the left.Make a left turn.Make a left U-turn.Change level action (e.g., use stairs, elevator).Exit to the right.Make a right turn.Make a right U-turn.Make a sharp left turn.Make a sharp right turn.Make a slight left turn.Make a slight right turn. -
Method Summary
Modifier and TypeMethodDescriptionstatic IndoorManeuverActionsReturns the enum constant of this class with the specified name.static IndoorManeuverActions[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
DEPART
Start the route.
-
ARRIVE
End of the route.
-
LEFT_U_TURN
Make a left U-turn.
-
SHARP_LEFT_TURN
Make a sharp left turn.
-
LEFT_TURN
Make a left turn.
-
SLIGHT_LEFT_TURN
Make a slight left turn.
-
SLIGHT_RIGHT_TURN
Make a slight right turn.
-
CONTINUE_ON
Continue on the current path.
-
RIGHT_TURN
Make a right turn.
-
SHARP_RIGHT_TURN
Make a sharp right turn.
-
RIGHT_U_TURN
Make a right U-turn.
-
LEFT_EXIT
Exit to the left.
-
RIGHT_EXIT
Exit to the right.
-
LEVEL_CHANGE_ACTION
Change level action (e.g., use stairs, elevator).
-
ENTER_ACTION
Enter a space or area.
-
LEAVE_ACTION
Leave a space or area.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-