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