Class BaseInterval
- java.lang.Object
-
- org.apache.commons.statistics.interval.BaseInterval
-
-
Constructor Summary
Constructors Constructor Description BaseInterval(double lower, double upper)Create an instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description doublegetLowerBound()Get the lower bound of the interval.doublegetUpperBound()Get the upper bound of the interval.
-
-
-
Method Detail
-
getLowerBound
public double getLowerBound()
Description copied from interface:IntervalGet the lower bound of the interval.- Specified by:
getLowerBoundin interfaceInterval- Returns:
- the lower end point of the interval
-
getUpperBound
public double getUpperBound()
Description copied from interface:IntervalGet the upper bound of the interval.- Specified by:
getUpperBoundin interfaceInterval- Returns:
- the upper end point of the interval
-
-