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

org.opentripplanner.transit.model.site.PathwayNodeBuilder Maven / Gradle / Ivy

package org.opentripplanner.transit.model.site;

import org.opentripplanner.transit.model.framework.FeedScopedId;

/**
 * A place where a station connects to the street network. Equivalent to GTFS stop location .
 */
public final class PathwayNodeBuilder
  extends StationElementBuilder {

  PathwayNodeBuilder(FeedScopedId id) {
    super(id);
  }

  PathwayNodeBuilder(PathwayNode original) {
    super(original);
  }

  @Override
  PathwayNodeBuilder instance() {
    return this;
  }

  @Override
  protected PathwayNode buildFromValues() {
    return new PathwayNode(this);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy