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