Error
The enumeration Error is a member of com.here.android.mpa.routing.RouteManager.
Enumeration Summary
public static final enumeration RouteManager.Error
extends java.lang.Enum, java.lang.Object
Represents values describing possible route calculation errors.
[For complete information, see the section Enumeration Details]
Enum Constant Summary
Fields |
---|
There was no calculation error. |
There was an unknown error preventing calculation. |
An out-of-memory error prevented calculation. |
Parameters passed to RouteManager.calculateRoute(RoutePlan,Listener) were invalid. |
The operation is not allowed at this time because another request is in progress. |
No route was found. |
No route was found, one of the RouteOptions might be preventing calculation. |
No start point was found. |
No end point was found. |
The end point is unreachable, possibly due to one of the RouteOptions. |
A PEDESTRIAN transport mode was set but was not practical (possibly the route is too long). |
An application user cancelled the calculation. |
A route was found but is invalid because it makes use of roads that were disabled by RouteOptions. |
Could not decode the route as received from the server. |
The route cannot be calculated because the HERE Developer credentials are invalid or were not provided. |
The online route calculation request has timed out. |
The required permission to use Online Public Transport Routing or Traffic Enabled Car Routing is missing. |
No internet connection is available. |
Method Summary
Methods |
---|
This method retrieves the enumeration value that matches the name specified by the caller. |
This method retrieves an array of constants of the given enum type in the order in which they are declared. |
Enumeration Details
Represents values describing possible route calculation errors.
Enum Constant Details
public static final Error NONE
There was no calculation error.
public static final Error UNKNOWN
There was an unknown error preventing calculation.
public static final Error OUT_OF_MEMORY
An out-of-memory error prevented calculation.
public static final Error INVALID_PARAMETERS
Parameters passed to RouteManager.calculateRoute(RoutePlan,Listener) were invalid.
public static final Error INVALID_OPERATION
The operation is not allowed at this time because another request is in progress.
public static final Error GRAPH_DISCONNECTED
No route was found.
public static final Error GRAPH_DISCONNECTED_CHECK_OPTIONS
No route was found, one of the RouteOptions might be preventing calculation.
public static final Error NO_START_POINT
No start point was found.
public static final Error NO_END_POINT
No end point was found.
public static final Error NO_END_POINT_CHECK_OPTIONS
The end point is unreachable, possibly due to one of the RouteOptions.
public static final Error CANNOT_DO_PEDESTRIAN
A PEDESTRIAN transport mode was set but was not practical (possibly the route is too long).
public static final Error ROUTING_CANCELLED
An application user cancelled the calculation.
public static final Error VIOLATES_OPTIONS
A route was found but is invalid because it makes use of roads that were disabled by RouteOptions.
public static final Error ROUTE_CORRUPTED
Could not decode the route as received from the server.
public static final Error INVALID_CREDENTIALS
The route cannot be calculated because the HERE Developer credentials are invalid or were not provided.
public static final Error REQUEST_TIMEOUT
The online route calculation request has timed out.
public static final Error OPERATION_NOT_ALLOWED
The required permission to use Online Public Transport Routing or Traffic Enabled Car Routing is missing.
public static final Error NO_CONNECTIVITY
No internet connection is available.
Method Details
public static Error valueOf (String name)
This method retrieves the enumeration value that matches the name specified by the caller.
Parameters:
-
name
A string containing the name of the enumeration member whose value is to be retrieved.
public static RouteManager.Error[] values ()
This method retrieves an array of constants of the given enum type in the order in which they are declared.