View Javadoc
1   package org.opentrafficsim.kpi.sampling.indicator;
2   
3   /**
4    * Enum for confidence interval sides.
5    * <p>
6    * Copyright (c) 2013-2026 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 Alexander Verbraeck
10   * @author Peter Knoppers
11   * @author Wouter Schakel
12   */
13  @Deprecated // non-scalar statistics not yet implemented
14  public enum IntervalSide
15  {
16      /** Two-side confidence interval. */
17      BOTH,
18  
19      /** Left-side confidence interval. */
20      LEFT,
21  
22      /** Right-side confidence interval. */
23      RIGHT;
24  }