| org.jfree.data.general.SeriesDataset
All known Subclasses: org.jfree.data.general.AbstractSeriesDataset,
Method Summary | |
public int | getSeriesCount() Returns the number of series in the dataset. | public Comparable | getSeriesKey(int series) Returns the key for a series.
Parameters: series - the series index (in the range 0 to getSeriesCount() - 1 ). | public int | indexOf(Comparable seriesKey) Returns the index of the series with the specified key, or -1 if there
is no such series in the dataset.
Parameters: seriesKey - the series key (null permitted). |
getSeriesCount | public int getSeriesCount()(Code) | | Returns the number of series in the dataset.
The series count. |
getSeriesKey | public Comparable getSeriesKey(int series)(Code) | | Returns the key for a series.
Parameters: series - the series index (in the range 0 to getSeriesCount() - 1 ). The key for the series. |
indexOf | public int indexOf(Comparable seriesKey)(Code) | | Returns the index of the series with the specified key, or -1 if there
is no such series in the dataset.
Parameters: seriesKey - the series key (null permitted). The index, or -1. |
|
|