org.opentripplanner.routing.graphfinder.PlaceAtDistance Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of otp Show documentation
Show all versions of otp Show documentation
The OpenTripPlanner multimodal journey planning system
package org.opentripplanner.routing.graphfinder;
/**
* A place of any of the types defined in PlaceType at a specified distance.
*
* @see PlaceType
*/
public class PlaceAtDistance {
public final Object place;
public final double distance;
public PlaceAtDistance(Object place, double distance) {
this.place = place;
this.distance = distance;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy