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

org.opentrafficsim.kpi.interfaces.LinkData Maven / Gradle / Ivy

There is a newer version: 1.7.5
Show newest version
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