NavigabilityType (API Reference)
Package com.here.sdk.maploader
Enum Class NavigabilityType
- All Implemented Interfaces:
Serializable,Comparable<NavigabilityType>,Constable
Represents the navigability level of a map region. This enum defines whether a region can be used for navigation purposes. It helps categorize regions based on their usability in routing and map operations.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionRegion is suitable for navigation (default navigability type).Region is not suitable for navigation. -
Method Summary
Modifier and TypeMethodDescriptionstatic NavigabilityTypeReturns the enum constant of this class with the specified name.static NavigabilityType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NON_NAVIGABLE
Region is not suitable for navigation. Indicates that the region lacks sufficient data for routing or turn-by-turn navigation. Such regions may only provide basic map display or limited functionality.
-
NAVIGABLE
Region is suitable for navigation (default navigability type). Indicates that the region contains complete data required for routing and navigation use cases. This is the default value for most regions.
-
-
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
-