public interface

IntervalCategoryDataset

implements CategoryDataset
org.jfree.data.category.IntervalCategoryDataset
Known Indirect Subclasses

Class Overview

A category dataset that defines a value range for each series/category combination.

Summary

Public Methods
abstract Number getEndValue(Comparable series, Comparable category)
Returns the end value for the interval for a given series and category.
abstract Number getEndValue(int series, int category)
Returns the end value for the interval for a given series and category.
abstract Number getStartValue(int series, int category)
Returns the start value for the interval for a given series and category.
abstract Number getStartValue(Comparable series, Comparable category)
Returns the start value for the interval for a given series and category.
[Expand]
Inherited Methods
From interface org.jfree.data.KeyedValues2D
From interface org.jfree.data.Values2D
From interface org.jfree.data.general.Dataset

Public Methods

public abstract Number getEndValue (Comparable series, Comparable category)

Returns the end value for the interval for a given series and category.

Parameters
series the series key.
category the category key.
Returns
  • The end value (possibly null).

public abstract Number getEndValue (int series, int category)

Returns the end value for the interval for a given series and category.

Parameters
series the series (zero-based index).
category the category (zero-based index).
Returns
  • The end value (possibly null).

public abstract Number getStartValue (int series, int category)

Returns the start value for the interval for a given series and category.

Parameters
series the series (zero-based index).
category the category (zero-based index).
Returns
  • The start value (possibly null).

public abstract Number getStartValue (Comparable series, Comparable category)

Returns the start value for the interval for a given series and category.

Parameters
series the series key.
category the category key.
Returns
  • The start value (possibly null).