Java org.jfree.data.xy OHLCDataset fields, constructors, methods, implement or subclass

Example usage for Java org.jfree.data.xy OHLCDataset fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.jfree.data.xy OHLCDataset.

The text is from its open source code.

Implementation

org.jfree.data.xy.OHLCDataset has the following implementations.
Click this link to see all its implementation.

Method

NumbergetClose(int series, int item)
Returns the y-value for the specified series and item.
doublegetCloseValue(int series, int item)
Returns the close-value (as a double primitive) for an item within a series.
NumbergetHigh(int series, int item)
Returns the high-value for the specified series and item.
doublegetHighValue(int series, int item)
Returns the high-value (as a double primitive) for an item within a series.
intgetItemCount(int series)
Returns the number of items in a series.
NumbergetLow(int series, int item)
Returns the low-value for the specified series and item.
doublegetLowValue(int series, int item)
Returns the low-value (as a double primitive) for an item within a series.
NumbergetOpen(int series, int item)
Returns the open-value for the specified series and item.
doublegetOpenValue(int series, int item)
Returns the open-value (as a double primitive) for an item within a series.
intgetSeriesCount()
Returns the number of series in the dataset.
ComparablegetSeriesKey(int series)
Returns the key for a series.
doublegetVolumeValue(int series, int item)
Returns the volume-value (as a double primitive) for an item within a series.
NumbergetX(int series, int item)
Returns the x-value for an item within a series.
doublegetXValue(int series, int item)
Returns the x-value for an item within a series.