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

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

A collection of XIntervalSeries objects.
Constructor:
 public XIntervalSeriesCollection() 
Method from org.jfree.data.xy.XIntervalSeriesCollection Summary:
addSeries,   clone,   equals,   getEndX,   getEndXValue,   getEndY,   getItemCount,   getSeries,   getSeriesCount,   getSeriesKey,   getStartX,   getStartXValue,   getStartY,   getX,   getY,   getYValue,   removeAllSeries,   removeSeries,   removeSeries
Methods from org.jfree.data.xy.AbstractIntervalXYDataset:
getEndXValue,   getEndYValue,   getStartXValue,   getStartYValue
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.xy.XIntervalSeriesCollection Detail:
 public  void addSeries(XIntervalSeries 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 getEndX(int series,
    int item) 
    Returns the end x-value for an item within a series.
 public double getEndXValue(int series,
    int item) 
    Returns the end x-value (as a double primitive) for an item within a series.
 public Number getEndY(int series,
    int item) 
    Returns the end y-value for an item within a series. This method maps directly to #getY(int, int) .
 public int getItemCount(int series) 
    Returns the number of items in the specified series.
 public XIntervalSeries 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 getStartX(int series,
    int item) 
    Returns the start x-value for an item within a series.
 public double getStartXValue(int series,
    int item) 
    Returns the start x-value (as a double primitive) for an item within a series.
 public Number getStartY(int series,
    int item) 
    Returns the start y-value for an item within a series. This method maps directly to #getY(int, int) .
 public Number getX(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.
 public double getYValue(int series,
    int item) 
    Returns the y-value (as a double primitive) for an item within a series.
 public  void removeAllSeries() 
    Removes all the series from the collection and sends a DatasetChangeEvent to all registered listeners.
 public  void removeSeries(int series) 
    Removes a series from the collection and sends a DatasetChangeEvent to all registered listeners.
 public  void removeSeries(XIntervalSeries series) 
    Removes a series from the collection and sends a DatasetChangeEvent to all registered listeners.