1 package org.opentrafficsim.kpi.interfaces;
2
3 import org.djunits.value.vdouble.scalar.Length;
4 import org.opentrafficsim.base.Identifiable;
5
6 /**
7 * Represents a lane for sampling.
8 * <p>
9 * Copyright (c) 2013-2020 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br>
10 * BSD-style license. See <a href="http://opentrafficsim.org/node/13">OpenTrafficSim License</a>.
11 * <p>
12 * @version $Revision$, $LastChangedDate$, by $Author$, initial version 12 okt. 2016 <br>
13 * @author <a href="http://www.tbm.tudelft.nl/averbraeck">Alexander Verbraeck</a>
14 * @author <a href="http://www.tudelft.nl/pknoppers">Peter Knoppers</a>
15 * @author <a href="http://www.transport.citg.tudelft.nl">Wouter Schakel</a>
16 */
17 public interface LaneDataInterface extends Identifiable
18 {
19
20 /**
21 * @return length of the lane
22 */
23 Length getLength();
24
25 /**
26 * @return parent link of the lane
27 */
28 LinkDataInterface getLinkData();
29
30 /**
31 * @return lane id
32 */
33 @Override
34 String getId();
35
36 }