View Javadoc
1   package org.opentrafficsim.draw.graphs;
2   
3   /**
4    * <p>
5    * Copyright (c) 2013-2020 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br>
6    * BSD-style license. See <a href="http://opentrafficsim.org/docs/current/license.html">OpenTrafficSim License</a>.
7    * </p>
8    * $LastChangedDate: 2015-07-24 02:58:59 +0200 (Fri, 24 Jul 2015) $, @version $Revision: 1147 $, by $Author: averbraeck $,
9    * initial version Sep 24, 2016 <br>
10   * @author <a href="http://www.tbm.tudelft.nl/averbraeck">Alexander Verbraeck</a>
11   * @author <a href="http://www.tudelft.nl/pknoppers">Peter Knoppers</a>
12   * @author <a href="http://www.transport.citg.tudelft.nl">Wouter Schakel</a>
13   */
14  public enum GraphType
15  {
16      /** Trajectory. */
17      TRAJECTORY,
18  
19      /** Contour plot: speed. */
20      SPEED_CONTOUR,
21  
22      /** Contour plot: acceleration. */
23      ACCELERATION_CONTOUR,
24  
25      /** Contour plot: density. */
26      DENSITY_CONTOUR,
27  
28      /** Contour plot: flow. */
29      FLOW_CONTOUR,
30  
31      /** Contour plot: delay. */
32      DELAY_CONTOUR,
33  
34      /** Fundamental diagram. */
35      FUNDAMENTAL_DIAGRAM,
36  
37      /** Any other graph. */
38      OTHER,
39  }