Interface Interval
- All Known Implementing Classes:
BaseInterval
public interface Interval
Interface representing an interval.
- Since:
- 1.2
-
Method Summary
Modifier and TypeMethodDescriptiondoubleGet the lower bound of the interval.doubleGet the upper bound of the interval.
-
Method Details
-
getLowerBound
double getLowerBound()Get the lower bound of the interval.- Returns:
- the lower end point of the interval
-
getUpperBound
double getUpperBound()Get the upper bound of the interval.- Returns:
- the upper end point of the interval
-