Package com.mapfactor.sdk.routing
Enum Class RoutePointsListener.Result
- All Implemented Interfaces:
Serializable
,Comparable<RoutePointsListener.Result>
,Constable
- Enclosing interface:
- RoutePointsListener
Adding route point result codes
- Since:
- 4.5
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionTrying to add a route point before adding previous one was finishedOther unspecified errorThere is no road near the coordinateAdding route point succeeded -
Method Summary
Modifier and TypeMethodDescriptionstatic RoutePointsListener.Result
Returns the enum constant of this class with the specified name.static RoutePointsListener.Result[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
SUCCESS
Adding route point succeeded- Since:
- 4.5
-
NO_ROAD_NEARBY
There is no road near the coordinate- Since:
- 4.5
-
ADDING_PREVIOUS_ROUTE_POINT_NOT_FINISHED
Trying to add a route point before adding previous one was finished- Since:
- 4.5
-
FAILED
Other unspecified error- Since:
- 4.5
-
-
Method Details
-
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
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 nameNullPointerException
- if the argument is null
-