1 package org.opentrafficsim.road.network.factory.opendrive; 2 3 /** 4 * Possible states of a traffic light. 5 * <p> 6 * Copyright (c) 2013-2019 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br> 7 * BSD-style license. See <a href="http://opentrafficsim.org/docs/license.html">OpenTrafficSim License</a>. 8 * <p> 9 * $LastChangedDate: 2015-07-24 02:58:59 +0200 (Fri, 24 Jul 2015) $, @version $Revision: 1147 $, by $Author: averbraeck $, 10 * initial version Sep 13, 2015 <br> 11 * @author <a href="http://www.tbm.tudelft.nl/averbraeck">Alexander Verbraeck</a> 12 */ 13 public enum TrafficLightState 14 { 15 /** Red */ 16 RED, 17 18 /** Green */ 19 GREEN, 20 21 /** Yellow */ 22 YELLOW; 23 }