-
- All Known Implementing Classes:
TimeSeriesCollection
public interface XYDomainInfo<S extends Comparable<S>>
An interface that can (optionally) be implemented by a dataset to assist in determining the minimum and maximum x-values in the dataset.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RangegetDomainBounds(List<S> visibleSeriesKeys, boolean includeInterval)Returns the range of the values in this dataset's domain.
-
-
-
Method Detail
-
getDomainBounds
Range getDomainBounds(List<S> visibleSeriesKeys, boolean includeInterval)
Returns the range of the values in this dataset's domain.- Parameters:
visibleSeriesKeys- the keys of the visible series.includeInterval- a flag that determines whether or not the y-interval is taken into account.- Returns:
- The range (or
nullif the dataset contains no values).
-
-