| org.jfree.data.RangeInfo
All known Subclasses: org.jfree.data.statistics.DefaultStatisticalCategoryDataset, org.jfree.data.time.DynamicTimeSeriesCollection, org.jfree.data.statistics.DefaultBoxAndWhiskerCategoryDataset, org.jfree.data.statistics.DefaultBoxAndWhiskerXYDataset, org.jfree.data.jdbc.JDBCXYDataset,
RangeInfo | public interface RangeInfo (Code) | | An interface (optional) that can be implemented by a dataset to assist in
determining the minimum and maximum values. See also
DomainInfo .
|
Method Summary | |
public Range | getRangeBounds(boolean includeInterval) Returns the range of the values in this dataset's range.
Parameters: includeInterval - a flag that determines whether or not they-interval is taken into account. | public double | getRangeLowerBound(boolean includeInterval) Returns the minimum y-value in the dataset.
Parameters: includeInterval - a flag that determines whether or not they-interval is taken into account. | public double | getRangeUpperBound(boolean includeInterval) Returns the maximum y-value in the dataset.
Parameters: includeInterval - a flag that determines whether or not they-interval is taken into account. |
getRangeBounds | public Range getRangeBounds(boolean includeInterval)(Code) | | Returns the range of the values in this dataset's range.
Parameters: includeInterval - a flag that determines whether or not they-interval is taken into account. The range. |
getRangeLowerBound | public double getRangeLowerBound(boolean includeInterval)(Code) | | Returns the minimum y-value in the dataset.
Parameters: includeInterval - a flag that determines whether or not they-interval is taken into account. The minimum value. |
getRangeUpperBound | public double getRangeUpperBound(boolean includeInterval)(Code) | | Returns the maximum y-value in the dataset.
Parameters: includeInterval - a flag that determines whether or not they-interval is taken into account. The maximum value. |
|
|