Enum Class NavigabilityType

java.lang.Object
java.lang.Enum<NavigabilityType>
com.here.sdk.maploader.NavigabilityType
All Implemented Interfaces:
Serializable, Comparable<NavigabilityType>, Constable

public enum NavigabilityType extends Enum<NavigabilityType>

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.

  • Enum Constant Details

    • NON_NAVIGABLE

      public static final NavigabilityType 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.

  • Method Details

    • values

      public static NavigabilityType[] 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

      public static NavigabilityType valueOf(String name)
      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 name
      NullPointerException - if the argument is null