public interface

DomainInfo

org.jfree.data.DomainInfo
Known Indirect Subclasses

Class Overview

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

Summary

Public Methods
abstract Range getDomainBounds(boolean includeInterval)
Returns the range of the values in this dataset's domain.
abstract double getDomainLowerBound(boolean includeInterval)
Returns the minimum x-value in the dataset.
abstract double getDomainUpperBound(boolean includeInterval)
Returns the maximum x-value in the dataset.

Public Methods

public abstract Range getDomainBounds (boolean includeInterval)

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

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

public abstract double getDomainLowerBound (boolean includeInterval)

Returns the minimum x-value in the dataset.

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

public abstract double getDomainUpperBound (boolean includeInterval)

Returns the maximum x-value in the dataset.

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