View Javadoc
1   package org.opentrafficsim.road.gtu.perception.object;
2   
3   import org.opentrafficsim.road.network.Lane;
4   
5   /**
6    * Lane based perceived object.
7    * <p>
8    * Copyright (c) 2013-2026 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br>
9    * BSD-style license. See <a href="https://opentrafficsim.org/docs/license.html">OpenTrafficSim License</a>.
10   * </p>
11   * @author Alexander Verbraeck
12   * @author Peter Knoppers
13   * @author Wouter Schakel
14   */
15  public interface PerceivedLaneBasedObject extends PerceivedObject
16  {
17  
18      /**
19       * Lane at which the object is located.
20       * @return lane at which the object is located
21       */
22      Lane getLane();
23  
24  }