Enum Class RoutePointsListener.Result

java.lang.Object
java.lang.Enum<RoutePointsListener.Result>
com.mapfactor.sdk.routing.RoutePointsListener.Result
All Implemented Interfaces:
Serializable, Comparable<RoutePointsListener.Result>, Constable
Enclosing interface:
RoutePointsListener

public static enum RoutePointsListener.Result extends Enum<RoutePointsListener.Result>
Adding route point result codes
Since:
4.5
  • Enum Constant Details

    • SUCCESS

      public static final RoutePointsListener.Result SUCCESS
      Adding route point succeeded
      Since:
      4.5
    • NO_ROAD_NEARBY

      public static final RoutePointsListener.Result NO_ROAD_NEARBY
      There is no road near the coordinate
      Since:
      4.5
    • ADDING_PREVIOUS_ROUTE_POINT_NOT_FINISHED

      public static final RoutePointsListener.Result ADDING_PREVIOUS_ROUTE_POINT_NOT_FINISHED
      Trying to add a route point before adding previous one was finished
      Since:
      4.5
    • FAILED

      public static final RoutePointsListener.Result FAILED
      Other unspecified error
      Since:
      4.5
  • Method Details

    • values

      public static RoutePointsListener.Result[] 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 RoutePointsListener.Result 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