Package com.navmii.sdk.routecalculation
Enum RouteCalculationError
java.lang.Object
java.lang.Enum<RouteCalculationError>
com.navmii.sdk.routecalculation.RouteCalculationError
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<RouteCalculationError>
,java.lang.constant.Constable
public enum RouteCalculationError extends java.lang.Enum<RouteCalculationError>
Represents route calculation error.
-
Nested Class Summary
-
Enum Constant Summary
Enum Constants Enum Constant Description ENVIRONMENT_SHUTDOWN
Indicates route calculation session was finished by route calculation manager due to its disposing (i.e.FAILED_TO_SNAP
Indicates the calculated route couldn't be snapped to the map.INVALID_REQUEST
Indicates some input parameters are invalid (i.e.MAP_SERVER_IS_UNREACHABLE
Non-fatal error indicating map tile server is unreachable.NO_ROAD_NEAR_WAYPOINT
Indicates no road was found near one or multiple points from the route plan.NO_ROUTE_FOUND
Indicates no route found.ROUTING_SERVER_IS_UNREACHABLE
Non-fatal error indicating routing server is unreachable.UNKNOWN_ERROR
Indicates unknown runtime error occurred. -
Method Summary
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.
-
Enum Constant Details
-
UNKNOWN_ERROR
Indicates unknown runtime error occurred. -
INVALID_REQUEST
Indicates some input parameters are invalid (i.e. user route plan doesn't contain enough points etc.). -
NO_ROUTE_FOUND
Indicates no route found. -
FAILED_TO_SNAP
Indicates the calculated route couldn't be snapped to the map. -
NO_ROAD_NEAR_WAYPOINT
Indicates no road was found near one or multiple points from the route plan. -
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
Non-fatal error indicating routing server is unreachable. -
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 Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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 namejava.lang.NullPointerException
- if the argument is null
-