| java.lang.Object | ||||
| ↳ | org.jfree.data.general.AbstractDataset | |||
| ↳ | org.jfree.data.general.AbstractSeriesDataset | |||
| ↳ | org.jfree.data.xy.AbstractXYDataset | |||
| ↳ | org.jfree.data.xy.VectorSeriesCollection | |||
A collection of VectorSeries objects.
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Creates a new instance of
VectorSeriesCollection. | |||||||||||
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Adds a series to the collection and sends a
DatasetChangeEvent
to all registered listeners. | |||||||||||
Returns a clone of this instance.
| |||||||||||
Tests this instance for equality with an arbitrary object.
| |||||||||||
Returns the number of items in the specified series.
| |||||||||||
Returns a series from the collection.
| |||||||||||
Returns the number of series in the collection.
| |||||||||||
Returns the key for a series.
| |||||||||||
Returns the vector for an item in a series.
| |||||||||||
Returns the x-component of the vector for an item in a series.
| |||||||||||
Returns the y-component of the vector for an item in a series.
| |||||||||||
Returns the x-value for an item within a series.
| |||||||||||
Returns the x-value for an item within a series.
| |||||||||||
Returns the y-value for an item within a series.
| |||||||||||
Returns the y-value for an item within a series.
| |||||||||||
Returns the index of the specified series, or -1 if that series is not
present in the dataset.
| |||||||||||
Removes all the series from the collection and sends a
DatasetChangeEvent to all registered listeners. | |||||||||||
Removes the specified series from the collection and sends a
DatasetChangeEvent to all registered listeners. | |||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
org.jfree.data.xy.AbstractXYDataset
| |||||||||||
From class
org.jfree.data.general.AbstractSeriesDataset
| |||||||||||
From class
org.jfree.data.general.AbstractDataset
| |||||||||||
From class
java.lang.Object
| |||||||||||
From interface
java.io.ObjectInputValidation
| |||||||||||
From interface
org.jfree.data.general.Dataset
| |||||||||||
From interface
org.jfree.data.general.SeriesChangeListener
| |||||||||||
From interface
org.jfree.data.general.SeriesDataset
| |||||||||||
From interface
org.jfree.data.xy.VectorXYDataset
| |||||||||||
From interface
org.jfree.data.xy.XYDataset
| |||||||||||
Creates a new instance of VectorSeriesCollection.
Adds a series to the collection and sends a DatasetChangeEvent
to all registered listeners.
| series | the series (null not permitted).
|
|---|
Returns a clone of this instance.
| CloneNotSupportedException | if there is a problem. |
|---|
Tests this instance for equality with an arbitrary object.
| obj | the object (null permitted). |
|---|
Returns the number of items in the specified series.
| series | the series (zero-based index). |
|---|
| IllegalArgumentException | if series is not in the
range 0 to getSeriesCount() - 1.
|
|---|
Returns a series from the collection.
| series | the series index (zero-based). |
|---|
| IllegalArgumentException | if series is not in the
range 0 to getSeriesCount() - 1.
|
|---|
Returns the number of series in the collection.
Returns the key for a series.
| series | the series index (in the range 0 to
getSeriesCount() - 1). |
|---|
| IllegalArgumentException | if series is not in the
specified range.
|
|---|
Returns the vector for an item in a series.
| series | the series index. |
|---|---|
| item | the item index. |
null).
Returns the x-component of the vector for an item in a series.
| series | the series index. |
|---|---|
| item | the item index. |
Returns the y-component of the vector for an item in a series.
| series | the series index. |
|---|---|
| item | the item index. |
Returns the x-value for an item within a series. Note that this method
creates a new Double instance every time it is called---use
getXValue(int, int) instead, if possible.
| series | the series index. |
|---|---|
| item | the item index. |
Returns the x-value for an item within a series.
| series | the series index. |
|---|---|
| item | the item index. |
Returns the y-value for an item within a series. Note that this method
creates a new Double instance every time it is called---use
getYValue(int, int) instead, if possible.
| series | the series index. |
|---|---|
| item | the item index. |
Returns the y-value for an item within a series.
| series | the series index. |
|---|---|
| item | the item index. |
Returns the index of the specified series, or -1 if that series is not present in the dataset.
| series | the series (null not permitted). |
|---|
Removes all the series from the collection and sends a
DatasetChangeEvent to all registered listeners.
Removes the specified series from the collection and sends a
DatasetChangeEvent to all registered listeners.
| series | the series (null not permitted). |
|---|