Class MatrixSeriesCollection

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

Represents a collection of MatrixSeries that can be used as a dataset.
See Also:
  • Constructor Details

  • Method Details

    • getItemCount

      public int getItemCount(int seriesIndex)
      Returns the number of items in the specified series.
      Specified by:
      getItemCount in interface XYDataset
      Parameters:
      seriesIndex - zero-based series index.
      Returns:
      The number of items in the specified series.
    • getSeries

      public MatrixSeries getSeries(int seriesIndex)
      Returns the series having the specified index.
      Parameters:
      seriesIndex - zero-based series index.
      Returns:
      The series.
    • getSeriesCount

      public int getSeriesCount()
      Returns the number of series in the collection.
      Specified by:
      getSeriesCount in interface SeriesDataset
      Specified by:
      getSeriesCount in class AbstractSeriesDataset
      Returns:
      The number of series in the collection.
    • getSeriesKey

      public Comparable getSeriesKey(int seriesIndex)
      Returns the key for a series.
      Specified by:
      getSeriesKey in interface SeriesDataset
      Specified by:
      getSeriesKey in class AbstractSeriesDataset
      Parameters:
      seriesIndex - zero-based series index.
      Returns:
      The key for a series.
    • getX

      public Number getX(int seriesIndex, int itemIndex)
      Returns the j index value of the specified Mij matrix item in the specified matrix series.
      Specified by:
      getX in interface XYDataset
      Parameters:
      seriesIndex - zero-based series index.
      itemIndex - zero-based item index.
      Returns:
      The j index value for the specified matrix item.
      See Also:
    • getY

      public Number getY(int seriesIndex, int itemIndex)
      Returns the i index value of the specified Mij matrix item in the specified matrix series.
      Specified by:
      getY in interface XYDataset
      Parameters:
      seriesIndex - zero-based series index.
      itemIndex - zero-based item index.
      Returns:
      The i index value for the specified matrix item.
      See Also:
    • getZ

      public Number getZ(int seriesIndex, int itemIndex)
      Returns the Mij item value of the specified Mij matrix item in the specified matrix series.
      Specified by:
      getZ in interface XYZDataset
      Parameters:
      seriesIndex - the series (zero-based index).
      itemIndex - zero-based item index.
      Returns:
      The Mij item value for the specified matrix item.
      See Also:
    • addSeries

      public void addSeries(MatrixSeries series)
      Adds a series to the collection.

      Notifies all registered listeners that the dataset has changed.

      Parameters:
      series - the series (null not permitted).
    • equals

      public boolean equals(Object obj)
      Tests this collection for equality with an arbitrary object.
      Overrides:
      equals in class AbstractDataset
      Parameters:
      obj - the object.
      Returns:
      A boolean.
    • hashCode

      public int hashCode()
      Returns a hash code.
      Overrides:
      hashCode in class AbstractDataset
      Returns:
      A hash code.
    • clone

      Returns a clone of this instance.
      Specified by:
      clone in interface PublicCloneable
      Overrides:
      clone in class AbstractDataset
      Returns:
      A clone.
      Throws:
      CloneNotSupportedException - if there is a problem.
    • removeAllSeries

      public void removeAllSeries()
      Removes all the series from the collection.

      Notifies all registered listeners that the dataset has changed.

    • removeSeries

      public void removeSeries(MatrixSeries series)
      Removes a series from the collection.

      Notifies all registered listeners that the dataset has changed.

      Parameters:
      series - the series (null).
    • removeSeries

      public void removeSeries(int seriesIndex)
      Removes a series from the collection.

      Notifies all registered listeners that the dataset has changed.

      Parameters:
      seriesIndex - the series (zero based index).