org.jfree.data.xy
Interface IntervalXYDataset
- Dataset, SeriesDataset, XYDataset
- AbstractIntervalXYDataset, CategoryTableXYDataset, CombinedDataset, DefaultIntervalXYDataset, DefaultTableXYDataset, DynamicTimeSeriesCollection, HistogramDataset, SimpleHistogramDataset, SubSeriesDataset, TimePeriodValuesCollection, TimeSeriesCollection, TimeTableXYDataset, XIntervalSeriesCollection, XYBarDataset, XYIntervalSeriesCollection, XYSeriesCollection, YIntervalSeriesCollection
An extension of the
XYDataset
interface that allows a range of data
to be defined for the X values, the Y values, or both the X and Y values.
This interface is used to support (among other things) bar plots against
numerical axes.
Number | getEndX(int series, int item) - Returns the ending X value for the specified series and item.
|
double | getEndXValue(int series, int item) - Returns the end x-value (as a double primitive) for an item within a
series.
|
Number | getEndY(int series, int item) - Returns the ending Y value for the specified series and item.
|
double | getEndYValue(int series, int item) - Returns the end y-value (as a double primitive) for an item within a
series.
|
Number | getStartX(int series, int item) - Returns the starting X value for the specified series and item.
|
double | getStartXValue(int series, int item) - Returns the start x-value (as a double primitive) for an item within a
series.
|
Number | getStartY(int series, int item) - Returns the starting Y value for the specified series and item.
|
double | getStartYValue(int series, int item) - Returns the start y-value (as a double primitive) for an item within a
series.
|
getEndX
public Number getEndX(int series,
int item)
Returns the ending X value for the specified series and item.
series
- the series index (zero-based).item
- the item index (zero-based).
getEndXValue
public double getEndXValue(int series,
int item)
Returns the end x-value (as a double primitive) for an item within a
series.
series
- the series index (zero-based).item
- the item index (zero-based).
getEndY
public Number getEndY(int series,
int item)
Returns the ending Y value for the specified series and item.
series
- the series index (zero-based).item
- the item index (zero-based).
getEndYValue
public double getEndYValue(int series,
int item)
Returns the end y-value (as a double primitive) for an item within a
series.
series
- the series index (zero-based).item
- the item index (zero-based).
getStartX
public Number getStartX(int series,
int item)
Returns the starting X value for the specified series and item.
series
- the series index (zero-based).item
- the item index (zero-based).
getStartXValue
public double getStartXValue(int series,
int item)
Returns the start x-value (as a double primitive) for an item within a
series.
series
- the series (zero-based index).item
- the item (zero-based index).
getStartY
public Number getStartY(int series,
int item)
Returns the starting Y value for the specified series and item.
series
- the series index (zero-based).item
- the item index (zero-based).
getStartYValue
public double getStartYValue(int series,
int item)
Returns the start y-value (as a double primitive) for an item within a
series.
series
- the series index (zero-based).item
- the item index (zero-based).