org.opentripplanner.model.transfer.TransferService 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.model.transfer;
import java.util.List;
import javax.annotation.Nullable;
import org.opentripplanner.transit.model.site.StopLocation;
import org.opentripplanner.transit.model.timetable.Trip;
public interface TransferService {
List listAll();
@Nullable
ConstrainedTransfer findTransfer(
Trip fromTrip,
int fromStopPosition,
StopLocation fromStop,
Trip toTrip,
int toStopPosition,
StopLocation toStop
);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy