org.jfree.data.xy

Class XIntervalDataItem

public class XIntervalDataItem extends ComparableObjectItem

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

Since: 1.0.3

Constructor Summary
XIntervalDataItem(double x, double xLow, double xHigh, double y)
Creates a new instance of XIntervalDataItem.
Method Summary
NumbergetX()
Returns the x-value.
doublegetXHighValue()
Returns the upper bound of the x-interval.
doublegetXLowValue()
Returns the lower bound of the x-interval.
doublegetYValue()
Returns the y-value.

Constructor Detail

XIntervalDataItem

public XIntervalDataItem(double x, double xLow, double xHigh, double y)
Creates a new instance of XIntervalDataItem.

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.

Method Detail

getX

public Number 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.

getYValue

public double getYValue()
Returns the y-value.

Returns: The y-value.

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