| org.jfree.data.xy.OHLCDataset
All known Subclasses: org.jfree.data.xy.DefaultOHLCDataset, org.jfree.data.xy.DefaultHighLowDataset, org.jfree.data.general.SubSeriesDataset, org.jfree.data.time.ohlc.OHLCSeriesCollection, org.jfree.data.general.CombinedDataset,
OHLCDataset | public interface OHLCDataset extends XYDataset(Code) | | An interface that defines data in the form of (x, high, low, open, close)
tuples.
|
Method Summary | |
public Number | getClose(int series, int item) Returns the y-value for the specified series and item.
Parameters: series - the series (zero-based index). Parameters: item - the item (zero-based index). | public double | getCloseValue(int series, int item) Returns the close-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 Number | getHigh(int series, int item) Returns the high-value for the specified series and item.
Parameters: series - the series (zero-based index). Parameters: item - the item (zero-based index). | public double | getHighValue(int series, int item) Returns the high-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 Number | getLow(int series, int item) Returns the low-value for the specified series and item.
Parameters: series - the series (zero-based index). Parameters: item - the item (zero-based index). | public double | getLowValue(int series, int item) Returns the low-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 Number | getOpen(int series, int item) Returns the open-value for the specified series and item.
Parameters: series - the series (zero-based index). Parameters: item - the item (zero-based index). | public double | getOpenValue(int series, int item) Returns the open-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 Number | getVolume(int series, int item) Returns the volume for the specified series and item.
Parameters: series - the series (zero-based index). Parameters: item - the item (zero-based index). | public double | getVolumeValue(int series, int item) Returns the volume-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). |
getClose | public Number getClose(int series, int item)(Code) | | Returns the y-value for the specified series and item.
Parameters: series - the series (zero-based index). Parameters: item - the item (zero-based index). The value. |
getCloseValue | public double getCloseValue(int series, int item)(Code) | | Returns the close-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). The close-value. |
getHigh | public Number getHigh(int series, int item)(Code) | | Returns the high-value for the specified series and item.
Parameters: series - the series (zero-based index). Parameters: item - the item (zero-based index). The value. |
getHighValue | public double getHighValue(int series, int item)(Code) | | Returns the high-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). The high-value. |
getLow | public Number getLow(int series, int item)(Code) | | Returns the low-value for the specified series and item.
Parameters: series - the series (zero-based index). Parameters: item - the item (zero-based index). The value. |
getLowValue | public double getLowValue(int series, int item)(Code) | | Returns the low-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). The low-value. |
getOpen | public Number getOpen(int series, int item)(Code) | | Returns the open-value for the specified series and item.
Parameters: series - the series (zero-based index). Parameters: item - the item (zero-based index). The value. |
getOpenValue | public double getOpenValue(int series, int item)(Code) | | Returns the open-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). The open-value. |
getVolume | public Number getVolume(int series, int item)(Code) | | Returns the volume for the specified series and item.
Parameters: series - the series (zero-based index). Parameters: item - the item (zero-based index). The value. |
getVolumeValue | public double getVolumeValue(int series, int item)(Code) | | Returns the volume-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). The volume-value. |
|
|