Uses of Class
org.jfree.data.ComparableObjectItem
-
Packages that use ComparableObjectItem 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 theXYDatasetinterface and related classes. -
-
Uses of ComparableObjectItem in org.jfree.data
Fields in org.jfree.data with type parameters of type ComparableObjectItem Modifier and Type Field Description protected List<ComparableObjectItem>ComparableObjectSeries. dataStorage for the data items in the series.Methods in org.jfree.data that return ComparableObjectItem Modifier and Type Method Description protected ComparableObjectItemComparableObjectSeries. getDataItem(int index)Return the data item with the specified index.protected ComparableObjectItemComparableObjectSeries. remove(int index)Removes the item at the specified index and sends aSeriesChangeEventto all registered listeners.ComparableObjectItemComparableObjectSeries. remove(Comparable<?> x)Removes the item with the specified x-value and sends aSeriesChangeEventto all registered listeners.Methods in org.jfree.data with parameters of type ComparableObjectItem Modifier and Type Method Description protected voidComparableObjectSeries. add(ComparableObjectItem item, boolean notify)Adds a data item to the series and, if requested, sends aSeriesChangeEventto all registered listeners.intComparableObjectItem. compareTo(ComparableObjectItem other)Returns an integer indicating the order of this object relative to another object. -
Uses of ComparableObjectItem in org.jfree.data.time.ohlc
Subclasses of ComparableObjectItem in org.jfree.data.time.ohlc Modifier and Type Class Description classOHLCItemAn item representing data in the form(time-period, open, high, low, close).Methods in org.jfree.data.time.ohlc that return ComparableObjectItem Modifier and Type Method Description ComparableObjectItemOHLCSeries. getDataItem(int index)Returns the data item at the specified index.ComparableObjectItemOHLCSeries. remove(int index)Removes the item with the specified index. -
Uses of ComparableObjectItem in org.jfree.data.xy
Subclasses of ComparableObjectItem in org.jfree.data.xy Modifier and Type Class Description classVectorDataItemA data item representing data in the form (x, y, deltaX, deltaY), intended for use by theVectorSeriesclass.classXIntervalDataItemAn item representing data in the form (x, x-low, x-high, y).classXYIntervalDataItemAn item representing data in the form (x, x-low, x-high, y, y-low, y-high).classYIntervalDataItemAn item representing data in the form (x, y, y-low, y-high).Methods in org.jfree.data.xy that return ComparableObjectItem Modifier and Type Method Description ComparableObjectItemVectorSeries. getDataItem(int index)Returns the data item at the specified index.ComparableObjectItemXIntervalSeries. getDataItem(int index)Returns the data item at the specified index.ComparableObjectItemXYIntervalSeries. getDataItem(int index)Returns the data item at the specified index.ComparableObjectItemYIntervalSeries. getDataItem(int index)Returns the data item at the specified index.ComparableObjectItemVectorSeries. remove(int index)Removes the item at the specified index and sends aSeriesChangeEventto all registered listeners.
-