Class YIntervalSeriesCollection

    • Field Detail

      • data

        private java.util.List data
        Storage for the data series.
    • Constructor Detail

      • YIntervalSeriesCollection

        public YIntervalSeriesCollection()
        Creates a new instance of YIntervalSeriesCollection.
    • Method Detail

      • addSeries

        public void addSeries​(YIntervalSeries series)
        Adds a series to the collection and sends a DatasetChangeEvent to all registered listeners.
        Parameters:
        series - the series (null not permitted).
      • getSeries

        public YIntervalSeries getSeries​(int series)
        Returns a series from the collection.
        Parameters:
        series - the series index (zero-based).
        Returns:
        The series.
        Throws:
        java.lang.IllegalArgumentException - if series is not in the range 0 to getSeriesCount() - 1.
      • getSeriesKey

        public java.lang.Comparable getSeriesKey​(int series)
        Returns the key for a series.
        Specified by:
        getSeriesKey in interface SeriesDataset
        Specified by:
        getSeriesKey in class AbstractSeriesDataset
        Parameters:
        series - the series index (in the range 0 to getSeriesCount() - 1).
        Returns:
        The key for a series.
        Throws:
        java.lang.IllegalArgumentException - if series is not in the specified range.
      • getItemCount

        public int getItemCount​(int series)
        Returns the number of items in the specified series.
        Specified by:
        getItemCount in interface XYDataset
        Parameters:
        series - the series (zero-based index).
        Returns:
        The item count.
        Throws:
        java.lang.IllegalArgumentException - if series is not in the range 0 to getSeriesCount() - 1.
      • getX

        public java.lang.Number getX​(int series,
                                     int item)
        Returns the x-value for an item within a series.
        Specified by:
        getX in interface XYDataset
        Parameters:
        series - the series index.
        item - the item index.
        Returns:
        The x-value.
      • getYValue

        public double getYValue​(int series,
                                int item)
        Returns the y-value (as a double primitive) for an item within a series.
        Specified by:
        getYValue in interface XYDataset
        Overrides:
        getYValue in class AbstractXYDataset
        Parameters:
        series - the series index (zero-based).
        item - the item index (zero-based).
        Returns:
        The value.
      • getY

        public java.lang.Number getY​(int series,
                                     int item)
        Returns the y-value for an item within a series.
        Specified by:
        getY in interface XYDataset
        Parameters:
        series - the series index.
        item - the item index.
        Returns:
        The y-value.
      • getStartX

        public java.lang.Number getStartX​(int series,
                                          int item)
        Returns the start x-value for an item within a series. This method maps directly to getX(int, int).
        Specified by:
        getStartX in interface IntervalXYDataset
        Parameters:
        series - the series index.
        item - the item index.
        Returns:
        The x-value.
      • getEndX

        public java.lang.Number getEndX​(int series,
                                        int item)
        Returns the end x-value for an item within a series. This method maps directly to getX(int, int).
        Specified by:
        getEndX in interface IntervalXYDataset
        Parameters:
        series - the series index.
        item - the item index.
        Returns:
        The x-value.
      • getStartY

        public java.lang.Number getStartY​(int series,
                                          int item)
        Returns the start y-value for an item within a series.
        Specified by:
        getStartY in interface IntervalXYDataset
        Parameters:
        series - the series index.
        item - the item index.
        Returns:
        The start y-value.
      • getEndY

        public java.lang.Number getEndY​(int series,
                                        int item)
        Returns the end y-value for an item within a series.
        Specified by:
        getEndY in interface IntervalXYDataset
        Parameters:
        series - the series index.
        item - the item index.
        Returns:
        The end y-value.
      • removeSeries

        public void removeSeries​(int series)
        Removes a series from the collection and sends a DatasetChangeEvent to all registered listeners.
        Parameters:
        series - the series index (zero-based).
      • removeSeries

        public void removeSeries​(YIntervalSeries series)
        Removes a series from the collection and sends a DatasetChangeEvent to all registered listeners.
        Parameters:
        series - the series (null not permitted).
      • removeAllSeries

        public void removeAllSeries()
        Removes all the series from the collection and sends a DatasetChangeEvent to all registered listeners.
      • equals

        public boolean equals​(java.lang.Object obj)
        Tests this instance for equality with an arbitrary object.
        Overrides:
        equals in class AbstractDataset
        Parameters:
        obj - the object (null permitted).
        Returns:
        A boolean.
      • clone

        public java.lang.Object clone()
                               throws java.lang.CloneNotSupportedException
        Returns a clone of this instance.
        Specified by:
        clone in interface PublicCloneable
        Overrides:
        clone in class AbstractDataset
        Returns:
        A clone.
        Throws:
        java.lang.CloneNotSupportedException - if there is a problem.