Enum RouteCalculationError

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<RouteCalculationError>

    public enum RouteCalculationError
    extends java.lang.Enum<RouteCalculationError>
    Represents route calculation error.
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static RouteCalculationError valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static RouteCalculationError[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Enum Constant Detail

      • UNKNOWN_ERROR

        public static final RouteCalculationError UNKNOWN_ERROR
        Indicates unknown runtime error occurred.
      • INVALID_REQUEST

        public static final RouteCalculationError INVALID_REQUEST
        Indicates some input parameters are invalid (i.e. user route plan doesn't contain enough points etc.).
      • FAILED_TO_SNAP

        public static final RouteCalculationError FAILED_TO_SNAP
        Indicates the calculated route couldn't be snapped to the map.
      • NO_ROAD_NEAR_WAYPOINT

        public static final RouteCalculationError NO_ROAD_NEAR_WAYPOINT
        Indicates no road was found near one or multiple points from the route plan.
      • MAP_SERVER_IS_UNREACHABLE

        public static final RouteCalculationError MAP_SERVER_IS_UNREACHABLE
        Non-fatal error indicating map tile server is unreachable. Can only be returned in online SDK version.
      • ROUTING_SERVER_IS_UNREACHABLE

        public static final RouteCalculationError ROUTING_SERVER_IS_UNREACHABLE
        Non-fatal error indicating routing server is unreachable.
      • ENVIRONMENT_SHUTDOWN

        public static final RouteCalculationError ENVIRONMENT_SHUTDOWN
        Indicates route calculation session was finished by route calculation manager due to its disposing (i.e. SDK or application was shut down etc.).
    • Method Detail

      • values

        public static RouteCalculationError[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (RouteCalculationError c : RouteCalculationError.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static RouteCalculationError valueOf​(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null