Interface Interval
-
public interface Interval
Interface representing an interval.- Since:
- 1.2
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description double
getLowerBound()
Get the lower bound of the interval.double
getUpperBound()
Get the upper bound of the interval.
-
-
-
Method Detail
-
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
-
-