
org.opentripplanner.transit.model.site.StationBuilder 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
The newest version!
package org.opentripplanner.transit.model.site;
import java.time.ZoneId;
import org.opentripplanner.framework.geometry.WgsCoordinate;
import org.opentripplanner.framework.i18n.I18NString;
import org.opentripplanner.transit.model.framework.AbstractEntityBuilder;
import org.opentripplanner.transit.model.framework.FeedScopedId;
public class StationBuilder extends AbstractEntityBuilder {
private I18NString name;
private String code;
private I18NString description;
private WgsCoordinate coordinate;
private StopTransferPriority priority;
private I18NString url;
private ZoneId timezone;
private boolean transfersNotAllowed = false;
StationBuilder(FeedScopedId id) {
super(id);
}
StationBuilder(Station original) {
super(original);
this.name = original.getName();
this.code = original.getCode();
this.description = original.getDescription();
this.coordinate = original.getCoordinate();
this.priority = original.getPriority();
this.url = original.getUrl();
this.timezone = original.getTimezone();
this.transfersNotAllowed = original.isTransfersNotAllowed();
}
public I18NString getName() {
return name;
}
public StationBuilder withName(I18NString name) {
this.name = name;
return this;
}
public String getCode() {
return code;
}
public StationBuilder withCode(String code) {
this.code = code;
return this;
}
public I18NString getDescription() {
return description;
}
public StationBuilder withDescription(I18NString description) {
this.description = description;
return this;
}
public WgsCoordinate getCoordinate() {
return coordinate;
}
public StationBuilder withCoordinate(WgsCoordinate coordinate) {
this.coordinate = coordinate;
return this;
}
public StationBuilder withCoordinate(double latitude, double longitude) {
this.coordinate = new WgsCoordinate(latitude, longitude);
return this;
}
public StopTransferPriority getPriority() {
return priority;
}
public StationBuilder withPriority(StopTransferPriority priority) {
this.priority = priority;
return this;
}
public I18NString getUrl() {
return url;
}
public StationBuilder withUrl(I18NString url) {
this.url = url;
return this;
}
public ZoneId getTimezone() {
return timezone;
}
public StationBuilder withTimezone(ZoneId timezone) {
this.timezone = timezone;
return this;
}
public boolean isTransfersNotAllowed() {
return transfersNotAllowed;
}
public StationBuilder withTransfersNotAllowed(boolean transfersNotAllowed) {
this.transfersNotAllowed = transfersNotAllowed;
return this;
}
@Override
protected Station buildFromValues() {
return new Station(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy