Package com.here.sdk.routing
Enum Class IndoorLevelChangeFeatures
- All Implemented Interfaces:
Serializable,Comparable<IndoorLevelChangeFeatures>,Constable
Indoor route features.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThis part of the route requires the usage of a car lift.Generic connector for indoor routing.This part of the route requires the usage of a drive ramp.This part of the route requires the usage of an elevator.This part of the route requires the usage of an elevator bank.This part of the route requires the usage of an escalator.This part of the route requires the usage of a pedestrian ramp.This part of the route requires the usage of a ramp.This part of the route requires the usage of stairs. -
Method Summary
Modifier and TypeMethodDescriptionstatic IndoorLevelChangeFeaturesReturns the enum constant of this class with the specified name.static IndoorLevelChangeFeatures[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
CONNECTOR
Generic connector for indoor routing.
-
ELEVATOR
This part of the route requires the usage of an elevator.
-
ESCALATOR
This part of the route requires the usage of an escalator.
-
RAMP
This part of the route requires the usage of a ramp.
-
STAIRS
This part of the route requires the usage of stairs.
-
PEDESTRIAN_RAMP
This part of the route requires the usage of a pedestrian ramp.
-
CAR_LIFT
This part of the route requires the usage of a car lift.
-
DRIVE_RAMP
This part of the route requires the usage of a drive ramp.
-
ELEVATOR_BANK
This part of the route requires the usage of an elevator bank.
-
-
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
-