Method Summary |
|
public void | addSeries(XYIntervalSeries series) Adds a series to the collection and sends a
DatasetChangeEvent
to all registered listeners. |
public Object | clone() Returns a clone of this dataset. |
public boolean | equals(Object obj) Tests this instance for equality with an arbitrary object.
Parameters: obj - the object (null permitted). |
public Number | getEndX(int series, int item) Returns the end x-value for an item within a series. |
public double | getEndXValue(int series, int item) Returns the end x-value (as a double primitive) for an item within a
series.
Parameters: series - the series index (zero-based). Parameters: item - the item index (zero-based). |
public Number | getEndY(int series, int item) Returns the end y-value for an item within a series. |
public double | getEndYValue(int series, int item) Returns the end y-value (as a double primitive) for an item within a
series.
Parameters: series - the series (zero-based index). Parameters: item - the item (zero-based index). |
public int | getItemCount(int series) Returns the number of items in the specified series.
Parameters: series - the series (zero-based index). |
public XYIntervalSeries | getSeries(int series) Returns a series from the collection.
Parameters: series - the series index (zero-based). |
public int | getSeriesCount() Returns the number of series in the collection. |
public Comparable | getSeriesKey(int series) Returns the key for a series.
Parameters: series - the series index (in the range 0 to getSeriesCount() - 1 ). |
public Number | getStartX(int series, int item) Returns the start x-value for an item within a series. |
public double | getStartXValue(int series, int item) Returns the start x-value (as a double primitive) for an item within a
series.
Parameters: series - the series index (zero-based). Parameters: item - the item index (zero-based). |
public Number | getStartY(int series, int item) Returns the start y-value for an item within a series. |
public double | getStartYValue(int series, int item) Returns the start y-value (as a double primitive) for an item within a
series.
Parameters: series - the series index (zero-based). Parameters: item - the item index (zero-based). |
public Number | getX(int series, int item) Returns the x-value for an item within a series.
Parameters: series - the series index. Parameters: item - the item index. |
public Number | getY(int series, int item) Returns the y-value for an item within a series.
Parameters: series - the series index. Parameters: item - the item index. |
public double | getYValue(int series, int item) Returns the y-value (as a double primitive) for an item within a
series.
Parameters: series - the series index (zero-based). Parameters: item - the item index (zero-based). |