public interface IntervalXYDataset extends XYDataset
XYDataset
interface that allows an x-interval
and a y-interval to be defined. Note that the x and y values defined
by the parent interface are NOT required to fall within these intervals.
This interface is used to support (among other things) bar plots against
numerical axes.Modifier and Type | Method and Description |
---|---|
Number |
getEndX(int series,
int item)
Returns the upper bound of the x-interval for the specified series and
item.
|
double |
getEndXValue(int series,
int item)
Returns the upper bound of the x-interval (as a double primitive) for
the specified series and item.
|
Number |
getEndY(int series,
int item)
Returns the upper bound of the y-interval for the specified series and
item.
|
double |
getEndYValue(int series,
int item)
Returns the upper bound of the y-interval (as a double primitive) for
the specified series and item.
|
Number |
getStartX(int series,
int item)
Returns the lower bound of the x-interval for the specified series and
item.
|
double |
getStartXValue(int series,
int item)
Returns the lower bound of the x-interval (as a double primitive) for
the specified series and item.
|
Number |
getStartY(int series,
int item)
Returns the lower bound of the y-interval for the specified series and
item.
|
double |
getStartYValue(int series,
int item)
Returns the lower bound of the y-interval (as a double primitive) for
the specified series and item.
|
getDomainOrder, getItemCount, getX, getXValue, getY, getYValue
getSeriesCount, getSeriesKey, indexOf
addChangeListener, getGroup, removeChangeListener, setGroup
Number getStartX(int series, int item)
series
- the series index (zero-based).item
- the item index (zero-based).null
permitted).double getStartXValue(int series, int item)
series
- the series (zero-based index).item
- the item (zero-based index).getStartX(int, int)
Number getEndX(int series, int item)
series
- the series index (zero-based).item
- the item index (zero-based).null
permitted).double getEndXValue(int series, int item)
series
- the series index (zero-based).item
- the item index (zero-based).getEndX(int, int)
Number getStartY(int series, int item)
series
- the series index (zero-based).item
- the item index (zero-based).null
permitted).double getStartYValue(int series, int item)
series
- the series index (zero-based).item
- the item index (zero-based).getStartY(int, int)
Number getEndY(int series, int item)
series
- the series index (zero-based).item
- the item index (zero-based).null
permitted).double getEndYValue(int series, int item)
series
- the series index (zero-based).item
- the item index (zero-based).getEndY(int, int)
Jas4pp 1.5 © Java Analysis Studio for Particle Physics