![JAR search and dependency download from the Maven repository](/logo.png)
org.opentrafficsim.kpi.interfaces.LinkData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ots-kpi Show documentation
Show all versions of ots-kpi Show documentation
OpenTrafficSim KPI Module without dependencies to ots-road or ots-core
package org.opentrafficsim.kpi.interfaces;
import java.util.List;
import org.djunits.value.vdouble.scalar.Length;
import org.opentrafficsim.base.Identifiable;
/**
* Represents a link for sampling.
*
* Copyright (c) 2013-2023 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
* BSD-style license. See OpenTrafficSim License.
*
* @author Alexander Verbraeck
* @author Peter Knoppers
* @author Wouter Schakel
* @param lane data type
*/
public interface LinkData extends Identifiable
{
/**
* Returns the length of the link.
* @return Length; length of the link
*/
Length getLength();
/**
* Returns the lanes of the link.
* @return List<L>; list of lanes of the link
*/
List getLaneDatas();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy