1 package org.opentrafficsim.road.network; 2 3 /** 4 * Lane access law.<br> 5 * <p> 6 * Copyright (c) 2024-2024 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br> 7 * BSD-style license. See <a href="https://opentrafficsim.org/docs/license.html">OpenTrafficSim License</a>. 8 * </p> 9 * @author <a href="https://github.com/wjschakel">Wouter Schakel</a> 10 */ 11 public enum LaneAccessLaw 12 { 13 14 /** Legal lane access law. */ 15 LEGAL, 16 17 /** Physical lane access law. */ 18 PHYSICAL; 19 20 }