All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opentripplanner.routing.graphfinder.PlaceAtDistance Maven / Gradle / Ivy

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 - 2024 Weber Informatics LLC | Privacy Policy