
org.opentripplanner.street.model.edge.SplitStreetEdge 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.street.model.edge;
/**
* The main purpose of this class is to be able to return the two new street edges after an edge
* is split. The first part is called head and the last part is called the tail.
*
* This class is NOT part of the model, just used as a return type when splitting an edge.
*/
public record SplitStreetEdge(StreetEdge head, StreetEdge tail) {}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy