Save This Page
Home » jcommon-1.0.13 » org.jfree » data » time » ohlc » [javadoc | source]
org.jfree.data.time.ohlc
public class: OHLCSeriesCollection [javadoc | source]
java.lang.Object
   org.jfree.data.general.AbstractDataset
      org.jfree.data.general.AbstractSeriesDataset
         org.jfree.data.xy.AbstractXYDataset
            org.jfree.data.time.ohlc.OHLCSeriesCollection

All Implemented Interfaces:
    OHLCDataset, Serializable, XYDataset, SeriesDataset, SeriesChangeListener, Cloneable, Dataset, ObjectInputValidation

A collection of OHLCSeries objects.
Constructor:
 public OHLCSeriesCollection() 
Method from org.jfree.data.time.ohlc.OHLCSeriesCollection Summary:
addSeries,   clone,   equals,   getClose,   getCloseValue,   getHigh,   getHighValue,   getItemCount,   getLow,   getLowValue,   getOpen,   getOpenValue,   getSeries,   getSeriesCount,   getSeriesKey,   getVolume,   getVolumeValue,   getX,   getX,   getXValue,   getY
Methods from org.jfree.data.xy.AbstractXYDataset:
getDomainOrder,   getXValue,   getYValue
Methods from org.jfree.data.general.AbstractSeriesDataset:
getSeriesCount,   getSeriesKey,   indexOf,   seriesChanged
Methods from org.jfree.data.general.AbstractDataset:
addChangeListener,   clone,   fireDatasetChanged,   getGroup,   hasListener,   notifyListeners,   removeChangeListener,   setGroup,   validateObject
Methods from java.lang.Object:
equals,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from org.jfree.data.time.ohlc.OHLCSeriesCollection Detail:
 public  void addSeries(OHLCSeries series) 
    Adds a series to the collection and sends a DatasetChangeEvent to all registered listeners.
 public Object clone() throws CloneNotSupportedException 
    Returns a clone of this instance.
 public boolean equals(Object obj) 
    Tests this instance for equality with an arbitrary object.
 public Number getClose(int series,
    int item) 
    Returns the close-value for an item within a series.
 public double getCloseValue(int series,
    int item) 
    Returns the close-value for an item within a series.
 public Number getHigh(int series,
    int item) 
    Returns the high-value for an item within a series.
 public double getHighValue(int series,
    int item) 
    Returns the high-value for an item within a series.
 public int getItemCount(int series) 
    Returns the number of items in the specified series.
 public Number getLow(int series,
    int item) 
    Returns the low-value for an item within a series.
 public double getLowValue(int series,
    int item) 
    Returns the low-value for an item within a series.
 public Number getOpen(int series,
    int item) 
    Returns the open-value for an item within a series.
 public double getOpenValue(int series,
    int item) 
    Returns the open-value for an item within a series.
 public OHLCSeries getSeries(int series) 
    Returns a series from the collection.
 public int getSeriesCount() 
    Returns the number of series in the collection.
 public Comparable getSeriesKey(int series) 
    Returns the key for a series.
 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.
 public Number getX(int series,
    int item) 
    Returns the x-value for an item within a series.
 public double getXValue(int series,
    int item) 
    Returns the x-value for an item within a series.
 public Number getY(int series,
    int item) 
    Returns the y-value for an item within a series.