Package | Description |
---|---|
org.jfree.data |
The base package for classes that represent various types of data.
|
org.jfree.data.time.ohlc |
Classes for representing financial data in open-high-low-close form.
|
org.jfree.data.xy |
A package containing the
XYDataset interface and related classes. |
Modifier and Type | Method and Description |
---|---|
protected ComparableObjectItem |
ComparableObjectSeries.getDataItem(int index)
Return the data item with the specified index.
|
ComparableObjectItem |
ComparableObjectSeries.remove(java.lang.Comparable x)
Removes the item with the specified x-value and sends a
SeriesChangeEvent to all registered listeners. |
protected ComparableObjectItem |
ComparableObjectSeries.remove(int index)
Removes the item at the specified index and sends a
SeriesChangeEvent to all registered listeners. |
Modifier and Type | Method and Description |
---|---|
protected void |
ComparableObjectSeries.add(ComparableObjectItem item,
boolean notify)
Adds a data item to the series and, if requested, sends a
SeriesChangeEvent to all registered listeners. |
Modifier and Type | Class and Description |
---|---|
class |
OHLCItem
An item representing data in the form
(time-period, open, high, low,
close) . |
Modifier and Type | Method and Description |
---|---|
ComparableObjectItem |
OHLCSeries.getDataItem(int index)
Returns the data item at the specified index.
|
ComparableObjectItem |
OHLCSeries.remove(int index)
Removes the item with the specified index.
|
Modifier and Type | Class and Description |
---|---|
class |
VectorDataItem
A data item representing data in the form (x, y, deltaX, deltaY), intended
for use by the
VectorSeries class. |
class |
XIntervalDataItem
An item representing data in the form (x, x-low, x-high, y).
|
class |
XYIntervalDataItem
An item representing data in the form (x, x-low, x-high, y, y-low, y-high).
|
class |
YIntervalDataItem
An item representing data in the form (x, y, y-low, y-high).
|
Modifier and Type | Method and Description |
---|---|
ComparableObjectItem |
YIntervalSeries.getDataItem(int index)
Returns the data item at the specified index.
|
ComparableObjectItem |
XYIntervalSeries.getDataItem(int index)
Returns the data item at the specified index.
|
ComparableObjectItem |
XIntervalSeries.getDataItem(int index)
Returns the data item at the specified index.
|
ComparableObjectItem |
VectorSeries.getDataItem(int index)
Returns the data item at the specified index.
|
ComparableObjectItem |
VectorSeries.remove(int index)
Removes the item at the specified index and sends a
SeriesChangeEvent to all registered listeners. |