org.jfree.data.xy

Class XYIntervalDataItem

public class XYIntervalDataItem extends ComparableObjectItem

An item representing data in the form (x, x-low, x-high, y, y-low, y-high).

Since: 1.0.3

Constructor Summary
XYIntervalDataItem(double x, double xLow, double xHigh, double y, double yLow, double yHigh)
Creates a new instance of XYIntervalItem.
Method Summary
DoublegetX()
Returns the x-value.
doublegetXHighValue()
Returns the upper bound of the x-interval.
doublegetXLowValue()
Returns the lower bound of the x-interval.
doublegetYHighValue()
Returns the upper bound of the y-interval.
doublegetYLowValue()
Returns the lower bound of the y-interval.
doublegetYValue()
Returns the y-value.

Constructor Detail

XYIntervalDataItem

public XYIntervalDataItem(double x, double xLow, double xHigh, double y, double yLow, double yHigh)
Creates a new instance of XYIntervalItem.

Parameters: x the x-value. xLow the lower bound of the x-interval. xHigh the upper bound of the x-interval. y the y-value. yLow the lower bound of the y-interval. yHigh the upper bound of the y-interval.

Method Detail

getX

public Double getX()
Returns the x-value.

Returns: The x-value (never null).

getXHighValue

public double getXHighValue()
Returns the upper bound of the x-interval.

Returns: The upper bound of the x-interval.

getXLowValue

public double getXLowValue()
Returns the lower bound of the x-interval.

Returns: The lower bound of the x-interval.

getYHighValue

public double getYHighValue()
Returns the upper bound of the y-interval.

Returns: The upper bound of the y-interval.

getYLowValue

public double getYLowValue()
Returns the lower bound of the y-interval.

Returns: The lower bound of the y-interval.

getYValue

public double getYValue()
Returns the y-value.

Returns: The y-value.

Copyright © 2000-2009 by Object Refinery Limited. All Rights Reserved.