| java.lang.Object org.jfree.data.ComparableObjectItem org.jfree.data.xy.YIntervalDataItem
YIntervalDataItem | public class YIntervalDataItem extends ComparableObjectItem (Code) | | An item representing data in the form (x, y, y-low, y-high).
since: 1.0.3 |
Constructor Summary | |
public | YIntervalDataItem(double x, double y, double yLow, double yHigh) Creates a new instance of YIntervalItem . |
Method Summary | |
public Double | getX() Returns the x-value. | 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. |
YIntervalDataItem | public YIntervalDataItem(double x, double y, double yLow, double yHigh)(Code) | | Creates a new instance of YIntervalItem .
Parameters: x - the x-value. 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 ). |
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. |
|
|