Method Summary |
|
public void | addSeries(OHLCSeries series) Adds a series to the collection and sends a
DatasetChangeEvent
to all registered listeners. |
public Object | clone() Returns a clone of this instance. |
public boolean | equals(Object obj) Tests this instance for equality with an arbitrary object.
Parameters: obj - the object (null permitted). |
public Number | getClose(int series, int item) Returns the close-value for an item within a series.
Parameters: series - the series index. Parameters: item - the item index. |
public double | getCloseValue(int series, int item) Returns the close-value for an item within a series.
Parameters: series - the series index. Parameters: item - the item index. |
public Number | getHigh(int series, int item) Returns the high-value for an item within a series.
Parameters: series - the series index. Parameters: item - the item index. |
public double | getHighValue(int series, int item) Returns the high-value for an item within a series.
Parameters: series - the series index. Parameters: item - the item index. |
public int | getItemCount(int series) Returns the number of items in the specified series.
Parameters: series - the series (zero-based index). |
public Number | getLow(int series, int item) Returns the low-value for an item within a series.
Parameters: series - the series index. Parameters: item - the item index. |
public double | getLowValue(int series, int item) Returns the low-value for an item within a series.
Parameters: series - the series index. Parameters: item - the item index. |
public Number | getOpen(int series, int item) Returns the open-value for an item within a series.
Parameters: series - the series index. Parameters: item - the item index. |
public double | getOpenValue(int series, int item) Returns the open-value for an item within a series.
Parameters: series - the series index. Parameters: item - the item index. |
public OHLCSeries | 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 | getVolume(int series, int item) |
public double | getVolumeValue(int series, int item) |
protected synchronized long | getX(RegularTimePeriod period) Returns the x-value for a time period.
Parameters: period - the time period (null not permitted). |
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 double | getXValue(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. |