| java.lang.Object org.jfree.data.ComparableObjectItem org.jfree.data.xy.XIntervalDataItem
XIntervalDataItem | public class XIntervalDataItem extends ComparableObjectItem (Code) | | An item representing data in the form (x, x-low, x-high, y).
since: 1.0.3 |
Constructor Summary | |
public | XIntervalDataItem(double x, double xLow, double xHigh, double y) Creates a new instance of XIntervalDataItem . |
Method Summary | |
public Number | getX() Returns the x-value. | public double | getXHighValue() Returns the upper bound of the x-interval. | public double | getXLowValue() Returns the lower bound of the x-interval. | public double | getYValue() Returns the y-value. |
XIntervalDataItem | public XIntervalDataItem(double x, double xLow, double xHigh, double y)(Code) | | Creates a new instance of XIntervalDataItem .
Parameters: x - the x-value. Parameters: xLow - the lower bound of the x-interval. Parameters: xHigh - the upper bound of the x-interval. Parameters: y - the y-value. |
getX | public Number getX()(Code) | | Returns the x-value.
The x-value (never null ). |
getXHighValue | public double getXHighValue()(Code) | | Returns the upper bound of the x-interval.
The upper bound of the x-interval. |
getXLowValue | public double getXLowValue()(Code) | | Returns the lower bound of the x-interval.
The lower bound of the x-interval. |
getYValue | public double getYValue()(Code) | | Returns the y-value.
The y-value. |
|
|