| java.lang.Object org.jfree.data.ComparableObjectItem org.jfree.data.xy.XYIntervalDataItem
XYIntervalDataItem | public class XYIntervalDataItem extends ComparableObjectItem (Code) | | An item representing data in the form (x, x-low, x-high, y, y-low, y-high).
since: 1.0.3 |
Constructor Summary | |
public | XYIntervalDataItem(double x, double xLow, double xHigh, double y, double yLow, double yHigh) Creates a new instance of XYIntervalItem . |
Method Summary | |
public Double | 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 | getYHighValue() Returns the upper bound of the y-interval. | public double | getYLowValue() Returns the lower bound of the y-interval. | public double | getYValue() Returns the y-value. |
XYIntervalDataItem | public XYIntervalDataItem(double x, double xLow, double xHigh, double y, double yLow, double yHigh)(Code) | | Creates a new instance of XYIntervalItem .
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. Parameters: yLow - the lower bound of the y-interval. Parameters: yHigh - the upper bound of the y-interval. |
getX | public Double 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. |
getYHighValue | public double getYHighValue()(Code) | | Returns the upper bound of the y-interval.
The upper bound of the y-interval. |
getYLowValue | public double getYLowValue()(Code) | | Returns the lower bound of the y-interval.
The lower bound of the y-interval. |
getYValue | public double getYValue()(Code) | | Returns the y-value.
The y-value. |
|
|