|
Header
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface XYDataset
An interface through which data in the form of (x, y) items can be accessed.
Method Summary | |
---|---|
DomainOrder |
getDomainOrder()
Returns the order of the domain (or X) values returned by the dataset. |
int |
getItemCount(int series)
Returns the number of items in a series. |
java.lang.Number |
getX(int series,
int item)
Returns the x-value for an item within a series. |
double |
getXValue(int series,
int item)
Returns the x-value for an item within a series. |
java.lang.Number |
getY(int series,
int item)
Returns the y-value for an item within a series. |
double |
getYValue(int series,
int item)
Returns the y-value (as a double primitive) for an item within a series. |
Methods inherited from interface org.jfree.data.general.SeriesDataset |
---|
getSeriesCount, getSeriesKey, indexOf |
Methods inherited from interface org.jfree.data.general.Dataset |
---|
addChangeListener, getGroup, removeChangeListener, setGroup |
Method Detail |
---|
DomainOrder getDomainOrder()
null
).int getItemCount(int series)
IllegalArgumentException
if the series
argument is outside the specified range.
series
- the series index (in the range 0
to
getSeriesCount() - 1
).
java.lang.Number getX(int series, int item)
series
- the series index (in the range 0
to
getSeriesCount() - 1
).item
- the item index (in the range 0
to
getItemCount(series)
).
null
).double getXValue(int series, int item)
series
- the series index (in the range 0
to
getSeriesCount() - 1
).item
- the item index (in the range 0
to
getItemCount(series)
).
java.lang.Number getY(int series, int item)
series
- the series index (in the range 0
to
getSeriesCount() - 1
).item
- the item index (in the range 0
to
getItemCount(series)
).
null
).double getYValue(int series, int item)
series
- the series index (in the range 0
to
getSeriesCount() - 1
).item
- the item index (in the range 0
to
getItemCount(series)
).
|
Footer
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |