Enum Class IndoorRoutingError

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

public enum IndoorRoutingError extends Enum<IndoorRoutingError>

Specifies possible errors that may result from the calculation of a indoor route.

  • Enum Constant Details

    • NO_ERROR

      public static final IndoorRoutingError NO_ERROR

      Default

    • NO_NETWORK

      public static final IndoorRoutingError NO_NETWORK

      No network.

    • NO_ROUTE_FOUND

      public static final IndoorRoutingError NO_ROUTE_FOUND

      No route found.

    • COULD_NOT_MATCH_ORIGIN

      public static final IndoorRoutingError COULD_NOT_MATCH_ORIGIN

      Could not match origin.

    • COULD_NOT_MATCH_DESTINATION

      public static final IndoorRoutingError COULD_NOT_MATCH_DESTINATION

      Could not match destination.

    • MAP_NOT_FOUND

      public static final IndoorRoutingError MAP_NOT_FOUND

      Venue ID not found.

    • PARSING_ERROR

      public static final IndoorRoutingError PARSING_ERROR

      Response output not as expected.

    • UNKNOWN_ERROR

      public static final IndoorRoutingError UNKNOWN_ERROR

      Unknown error.

    • BAD_REQUEST

      public static final IndoorRoutingError BAD_REQUEST

      Bad request.

    • UNAUTHORIZED_ACCESS

      public static final IndoorRoutingError UNAUTHORIZED_ACCESS

      Unauthorized access.

    • FORBIDDEN

      public static final IndoorRoutingError FORBIDDEN

      Forbidden.

    • NOT_FOUND

      public static final IndoorRoutingError NOT_FOUND

      Resource unavailable

    • TOO_MANY_REQUESTS

      public static final IndoorRoutingError TOO_MANY_REQUESTS

      Too many requests.

    • INTERNAL_SERVER_ERROR

      public static final IndoorRoutingError INTERNAL_SERVER_ERROR

      Internal server error.

    • BAD_GATEWAY

      public static final IndoorRoutingError BAD_GATEWAY

      Bad Gateway.

    • SERVICE_UNAVAILABLE

      public static final IndoorRoutingError SERVICE_UNAVAILABLE

      Service unavailable.

  • Method Details

    • values

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