LaneAccessLaw.java

  1. package org.opentrafficsim.road.network;

  2. /**
  3.  * Lane access law.<br>
  4.  * <br>
  5.  * Copyright (c) 2022-2023 Delft University of Technology, Jaffalaan 5, 2628 BX Delft, the Netherlands. All rights reserved. See
  6.  * for project information <a href="https://djutils.org" target="_blank"> https://djutils.org</a>. The DJUTILS project is
  7.  * distributed under a three-clause BSD-style license, which can be found at
  8.  * <a href="https://djutils.org/docs/license.html" target="_blank"> https://djutils.org/docs/license.html</a>. <br>
  9.  * @author <a href="http://www.transport.citg.tudelft.nl">Wouter Schakel</a>
  10.  */
  11. public enum LaneAccessLaw
  12. {
  13.     /** Legal lane access law. */
  14.     LEGAL,

  15.     /** Physical lane access law. */
  16.     PHYSICAL;
  17. }