Uses of Class
org.optaweb.vehiclerouting.domain.Distance
-
Packages that use Distance Package Description org.optaweb.vehiclerouting.domain Domain model.org.optaweb.vehiclerouting.plugin.websocket Network communication over WebSocket.org.optaweb.vehiclerouting.service.location Use cases that involvelocations.org.optaweb.vehiclerouting.service.route Handlesrouteupdates. -
-
Uses of Distance in org.optaweb.vehiclerouting.domain
Fields in org.optaweb.vehiclerouting.domain declared as Distance Modifier and Type Field Description static DistanceDistance. ZEROZero distance, for example the distance from a location to itself.Methods in org.optaweb.vehiclerouting.domain that return Distance Modifier and Type Method Description DistanceRoutingPlan. distance()Total distance traveled (sum of distances of all routes).static DistanceDistance. ofMillis(long millis)Create a distance of the given milliseconds.Constructors in org.optaweb.vehiclerouting.domain with parameters of type Distance Constructor Description RoutingPlan(Distance distance, List<Vehicle> vehicles, Location depot, List<Location> visits, List<RouteWithTrack> routes)Create a routing plan. -
Uses of Distance in org.optaweb.vehiclerouting.plugin.websocket
Methods in org.optaweb.vehiclerouting.plugin.websocket with parameters of type Distance Modifier and Type Method Description (package private) static PortableDistancePortableDistance. fromDistance(Distance distance) -
Uses of Distance in org.optaweb.vehiclerouting.service.location
Methods in org.optaweb.vehiclerouting.service.location that return Distance Modifier and Type Method Description DistanceDistanceMatrixRow. distanceTo(long locationId)Distance from this row's location to the given location. -
Uses of Distance in org.optaweb.vehiclerouting.service.route
Methods in org.optaweb.vehiclerouting.service.route that return Distance Modifier and Type Method Description DistanceRouteChangedEvent. distance()Routing plan distance.Constructors in org.optaweb.vehiclerouting.service.route with parameters of type Distance Constructor Description RouteChangedEvent(Object source, Distance distance, List<Long> vehicleIds, Long depotId, List<Long> visitIds, Collection<ShallowRoute> routes)Create a new ApplicationEvent.
-