Uses of Class
org.optaplanner.examples.tsp.domain.location.Location
-
Packages that use Location Package Description org.optaplanner.examples.tsp.domain org.optaplanner.examples.tsp.domain.location -
-
Uses of Location in org.optaplanner.examples.tsp.domain
Methods in org.optaplanner.examples.tsp.domain that return Location Modifier and Type Method Description LocationDomicile. getLocation()LocationStandstill. getLocation()LocationVisit. getLocation()Methods in org.optaplanner.examples.tsp.domain that return types with arguments of type Location Modifier and Type Method Description List<Location>TspSolution. getLocationList()Methods in org.optaplanner.examples.tsp.domain with parameters of type Location Modifier and Type Method Description voidDomicile. setLocation(Location location)voidVisit. setLocation(Location location)Method parameters in org.optaplanner.examples.tsp.domain with type arguments of type Location Modifier and Type Method Description voidTspSolution. setLocationList(List<Location> locationList) -
Uses of Location in org.optaplanner.examples.tsp.domain.location
Subclasses of Location in org.optaplanner.examples.tsp.domain.location Modifier and Type Class Description classAirLocationThe cost between 2 locations is a straight line: the euclidean distance between their GPS coordinates.classRoadLocationThe cost between 2 locations was precalculated on a real road network route.Methods in org.optaplanner.examples.tsp.domain.location with parameters of type Location Modifier and Type Method Description doubleLocation. getAirDistanceDoubleTo(Location location)doubleLocation. getAngle(Location location)The angle relative to the direction EAST.longAirLocation. getDistanceTo(Location location)abstract longLocation. getDistanceTo(Location location)The distance's unit of measurement depends on theTspSolution'sDistanceType.longRoadLocation. getDistanceTo(Location location)
-