org.jfree.data.statistics
Interface MultiValueCategoryDataset
- CategoryDataset, Dataset, KeyedValues2D, Values2D
- DefaultMultiValueCategoryDataset
A category dataset that defines multiple values for each item.
List | getValues(Comparable rowKey, Comparable columnKey) - Returns a list (possibly empty) of the values for the specified item.
|
List | getValues(int row, int column) - Returns a list (possibly empty) of the values for the specified item.
|
getValues
public List getValues(Comparable rowKey,
Comparable columnKey)
Returns a list (possibly empty) of the values for the specified item.
The returned list should be unmodifiable.
rowKey
- the row key (null
not permitted).columnKey
- the column key (null
not permitted).
getValues
public List getValues(int row,
int column)
Returns a list (possibly empty) of the values for the specified item.
The returned list should be unmodifiable.
row
- the row index (zero-based).column
- the column index (zero-based).