| java.lang.Object | ||
| ↳ | org.jfree.data.general.AbstractDataset | |
| ↳ | org.jfree.data.statistics.DefaultMultiValueCategoryDataset | |
A category dataset that defines multiple values for each item.
| Fields | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| data | Storage for the data. | ||||||||||
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Creates a new dataset.
| |||||||||||
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Adds a list of values to the dataset (
null and Double.NaN
items are automatically removed) and sends a DatasetChangeEvent
to all registered listeners. | |||||||||||
Returns a clone of this instance.
| |||||||||||
Tests this dataset for equality with an arbitrary object.
| |||||||||||
Returns the number of columns in the table.
| |||||||||||
Returns the column index for a given key.
| |||||||||||
Returns a column key.
| |||||||||||
Returns the column keys.
| |||||||||||
Returns the range of the values in this dataset's range.
| |||||||||||
Returns the minimum y-value in the dataset.
| |||||||||||
Returns the maximum y-value in the dataset.
| |||||||||||
Returns the number of rows in the table.
| |||||||||||
Returns the row index for a given key.
| |||||||||||
Returns a row key.
| |||||||||||
Returns the row keys.
| |||||||||||
Returns the average value for the specified item.
| |||||||||||
Returns the average value for the specified item.
| |||||||||||
Returns a list (possibly empty) of the values for the specified item.
| |||||||||||
Returns a list (possibly empty) of the values for the specified item.
| |||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
org.jfree.data.general.AbstractDataset
| |||||||||||
From class
java.lang.Object
| |||||||||||
From interface
java.io.ObjectInputValidation
| |||||||||||
From interface
org.jfree.data.KeyedValues2D
| |||||||||||
From interface
org.jfree.data.RangeInfo
| |||||||||||
From interface
org.jfree.data.Values2D
| |||||||||||
From interface
org.jfree.data.general.Dataset
| |||||||||||
From interface
org.jfree.data.statistics.MultiValueCategoryDataset
| |||||||||||
Creates a new dataset.
Adds a list of values to the dataset (null and Double.NaN
items are automatically removed) and sends a DatasetChangeEvent
to all registered listeners.
| values | a list of values (null not permitted). |
|---|---|
| rowKey | the row key (null not permitted). |
| columnKey | the column key (null not permitted).
|
Returns a clone of this instance.
| CloneNotSupportedException | if the dataset cannot be cloned. |
|---|
Tests this dataset for equality with an arbitrary object.
| obj | the object (null permitted). |
|---|
Returns the number of columns in the table.
Returns the column index for a given key.
| key | the column key. |
|---|
Returns a column key.
| column | the column index (zero-based). |
|---|
Returns the range of the values in this dataset's range.
| includeInterval | a flag that determines whether or not the y-interval is taken into account. |
|---|
Returns the minimum y-value in the dataset.
| includeInterval | a flag that determines whether or not the y-interval is taken into account. |
|---|
Returns the maximum y-value in the dataset.
| includeInterval | a flag that determines whether or not the y-interval is taken into account. |
|---|
Returns the number of rows in the table.
Returns the row index for a given key.
| key | the row key. |
|---|
Returns a row key.
| row | the row index (zero-based). |
|---|
Returns the average value for the specified item.
| row | the row key. |
|---|---|
| column | the column key. |
Returns the average value for the specified item.
| row | the row index. |
|---|---|
| column | the column index. |
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). |
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). |