public interface

MultiValueCategoryDataset

implements CategoryDataset
org.jfree.data.statistics.MultiValueCategoryDataset
Known Indirect Subclasses

Class Overview

A category dataset that defines multiple values for each item.

Summary

Public Methods
abstract List getValues(Comparable rowKey, Comparable columnKey)
Returns a list (possibly empty) of the values for the specified item.
abstract List getValues(int row, int column)
Returns a list (possibly empty) of the values for the specified item.
[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 List getValues (Comparable rowKey, Comparable columnKey)

Returns a list (possibly empty) of the values for the specified item. The returned list should be unmodifiable.

Parameters
rowKey the row key (null not permitted).
columnKey the column key (null not permitted).
Returns
  • The list of values.

public abstract List getValues (int row, int column)

Returns a list (possibly empty) of the values for the specified item. The returned list should be unmodifiable.

Parameters
row the row index (zero-based).
column the column index (zero-based).
Returns
  • The list of values.