public interface

RangeInfo

org.jfree.data.RangeInfo
Known Indirect Subclasses

Class Overview

An interface (optional) that can be implemented by a dataset to assist in determining the minimum and maximum values. See also DomainInfo.

Summary

Public Methods
abstract Range getRangeBounds(boolean includeInterval)
Returns the range of the values in this dataset's range.
abstract double getRangeLowerBound(boolean includeInterval)
Returns the minimum y-value in the dataset.
abstract double getRangeUpperBound(boolean includeInterval)
Returns the maximum y-value in the dataset.

Public Methods

public abstract Range getRangeBounds (boolean includeInterval)

Returns the range of the values in this dataset's range.

Parameters
includeInterval a flag that determines whether or not the y-interval is taken into account.
Returns
  • The range (or null if the dataset contains no values).

public abstract double getRangeLowerBound (boolean includeInterval)

Returns the minimum y-value in the dataset.

Parameters
includeInterval a flag that determines whether or not the y-interval is taken into account.
Returns
  • The minimum value.

public abstract double getRangeUpperBound (boolean includeInterval)

Returns the maximum y-value in the dataset.

Parameters
includeInterval a flag that determines whether or not the y-interval is taken into account.
Returns
  • The maximum value.