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

org.opentripplanner.transit.api.request.FindStopLocationsRequestBuilder Maven / Gradle / Ivy

The newest version!
package org.opentripplanner.transit.api.request;

public class FindStopLocationsRequestBuilder {

  private String name;

  protected FindStopLocationsRequestBuilder() {}

  public FindStopLocationsRequestBuilder withName(String name) {
    this.name = name;
    return this;
  }

  public FindStopLocationsRequest build() {
    return new FindStopLocationsRequest(name);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy