View Javadoc
1   package org.opentrafficsim.importexport.osm;
2   
3   import org.opentrafficsim.core.gtu.GTUType;
4   
5   /**
6    * <p>
7    * Copyright (c) 2013-2014 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br>
8    * BSD-style license. See <a href="http://opentrafficsim.org/node/13">OpenTrafficSim License</a>.
9    * <p>
10   * @version Feb 26, 2015 <br>
11   * @author <a href="http://www.tbm.tudelft.nl/averbraeck">Alexander Verbraeck</a>
12   * @author <a href="http://Hansvanlint.weblog.tudelft.nl">Hans van Lint</a>
13   * @author <a href="http://www.tudelft.nl/pknoppers">Peter Knoppers</a>
14   * @author <a href="http://www.citg.tudelft.nl">Guus Tamminga</a>
15   * @author <a href="http://www.citg.tudelft.nl">Yufei Yuan</a>
16   */
17  public class PredefinedGTUTypes
18  {
19      public static final GTUType<String> bike = new GTUType<String>("BIKE");
20      public static final GTUType<String> car = new GTUType<String>("CAR");
21      public static final GTUType<String> pedestrian = new GTUType<String>("PEDESTRIAN");
22  }