1 package org.djutils.stats; 2 3 /** 4 * ConfidenceInterval lists the three type of confidence intervals: two one-sided and one two-sided interval. 5 * <p> 6 * Copyright (c) 2019-2024 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br> 7 * BSD-style license. See <a href="https://djunits.org/docs/license.html">DJUNITS License</a>. 8 * </p> 9 * @author <a href="https://www.tudelft.nl/averbraeck" target="_blank">Alexander Verbraeck</a> 10 */ 11 public enum ConfidenceInterval 12 { 13 /** LEFT_SIDE_CONFIDENCE refers to the left side confidence. */ 14 LEFT_SIDE_CONFIDENCE, 15 16 /** BOTH_SIDE_CONFIDENCE refers to both sides of the confidence. */ 17 BOTH_SIDE_CONFIDENCE, 18 19 /** RIGTH_SIDE_CONFIDENCE refers to the right side confidence. */ 20 RIGHT_SIDE_CONFIDENCE; 21 }