public enum IntervalSide extends Enum<IntervalSide>
Copyright (c) 2013-2016 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
BSD-style license. See OpenTrafficSim License.
Enum Constant and Description |
---|
BOTH
Two-side confidence interval.
|
LEFT
Left-side confidence interval.
|
RIGHT
Right-side confidence interval.
|
Modifier and Type | Method and Description |
---|---|
static IntervalSide |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IntervalSide[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IntervalSide BOTH
public static final IntervalSide LEFT
public static final IntervalSide RIGHT
public static IntervalSide[] values()
for (IntervalSide c : IntervalSide.values()) System.out.println(c);
public static IntervalSide valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2014–2016 Delft University of Technology. All rights reserved.