org.jfree.data.xy
Class XIntervalDataItem
- Cloneable, Comparable, Serializable
An item representing data in the form (x, x-low, x-high, y).
XIntervalDataItem(double x, double xLow, double xHigh, double y) - Creates a new instance of
XIntervalDataItem .
|
Number | getX() - Returns the x-value.
|
double | getXHighValue() - Returns the upper bound of the x-interval.
|
double | getXLowValue() - Returns the lower bound of the x-interval.
|
double | getYValue() - Returns the y-value.
|
XIntervalDataItem
public XIntervalDataItem(double x,
double xLow,
double xHigh,
double y)
Creates a new instance of XIntervalDataItem
.
x
- the x-value.xLow
- the lower bound of the x-interval.xHigh
- the upper bound of the x-interval.y
- the y-value.
getX
public Number getX()
Returns the x-value.
- The x-value (never
null
).
getXHighValue
public double getXHighValue()
Returns the upper bound of the x-interval.
- The upper bound of the x-interval.
getXLowValue
public double getXLowValue()
Returns the lower bound of the x-interval.
- The lower bound of the x-interval.
getYValue
public double getYValue()
Returns the y-value.