Enum RouteTracker.ReroutingStrategy
- java.lang.Object
-
- java.lang.Enum<RouteTracker.ReroutingStrategy>
-
- com.esri.arcgisruntime.navigation.RouteTracker.ReroutingStrategy
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<RouteTracker.ReroutingStrategy>
- Enclosing class:
- RouteTracker
public static enum RouteTracker.ReroutingStrategy extends java.lang.Enum<RouteTracker.ReroutingStrategy>
The route tracker's rerouting strategy.Strategies determine which locations will be used during rerouting and/or if new route is optimized.
- Since:
- 100.6.0
-
-
Enum Constant Summary
Enum Constants Enum Constant Description RESEQUENCE_STOPS_ONLY
Re-sequence (optimize) all remaining stops, which will drop all waypoints and rest breaks.TO_NEXT_STOP
Reroute to next unvisited stop.TO_NEXT_WAYPOINT
Reroute to next unvisited waypoint, rest break, or stop.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static RouteTracker.ReroutingStrategy
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static RouteTracker.ReroutingStrategy[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TO_NEXT_WAYPOINT
public static final RouteTracker.ReroutingStrategy TO_NEXT_WAYPOINT
Reroute to next unvisited waypoint, rest break, or stop.- Since:
- 100.6.0
-
TO_NEXT_STOP
public static final RouteTracker.ReroutingStrategy TO_NEXT_STOP
Reroute to next unvisited stop.- Since:
- 100.6.0
-
RESEQUENCE_STOPS_ONLY
public static final RouteTracker.ReroutingStrategy RESEQUENCE_STOPS_ONLY
Re-sequence (optimize) all remaining stops, which will drop all waypoints and rest breaks.- Since:
- 100.6.0
-
-
Method Detail
-
values
public static RouteTracker.ReroutingStrategy[] 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 (RouteTracker.ReroutingStrategy c : RouteTracker.ReroutingStrategy.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RouteTracker.ReroutingStrategy 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 namejava.lang.NullPointerException
- if the argument is null
-
-