Enum Class AccessAttributes

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

public enum AccessAttributes extends Enum<AccessAttributes>

Types of access attributes.

  • Enum Constant Details

    • OPEN

      public static final AccessAttributes OPEN

      The access is open.

    • NO_THROUGH

      public static final AccessAttributes NO_THROUGH

      No access is permitted.

    • TOLL_ROAD

      public static final AccessAttributes TOLL_ROAD

      The access is permited after paying a toll.

  • Method Details

    • values

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