GraphType.java

  1. package org.opentrafficsim.draw.graphs;

  2. /**
  3.  * <p>
  4.  * Copyright (c) 2013-2023 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br>
  5.  * BSD-style license. See <a href="https://opentrafficsim.org/docs/license.html">OpenTrafficSim License</a>.
  6.  * </p>
  7.  * @author <a href="https://github.com/averbraeck">Alexander Verbraeck</a>
  8.  * @author <a href="https://tudelft.nl/staff/p.knoppers-1">Peter Knoppers</a>
  9.  * @author <a href="https://dittlab.tudelft.nl">Wouter Schakel</a>
  10.  */
  11. public enum GraphType
  12. {
  13.     /** Trajectory. */
  14.     TRAJECTORY,

  15.     /** Contour plot: speed. */
  16.     SPEED_CONTOUR,

  17.     /** Contour plot: acceleration. */
  18.     ACCELERATION_CONTOUR,

  19.     /** Contour plot: density. */
  20.     DENSITY_CONTOUR,

  21.     /** Contour plot: flow. */
  22.     FLOW_CONTOUR,

  23.     /** Contour plot: delay. */
  24.     DELAY_CONTOUR,

  25.     /** Fundamental diagram. */
  26.     FUNDAMENTAL_DIAGRAM,

  27.     /** Any other graph. */
  28.     OTHER,
  29. }