- java.lang.Object
-
- org.jfree.data.general.Series<K>
-
- org.jfree.data.ComparableObjectSeries<S>
-
- org.jfree.data.xy.XIntervalSeries<S>
-
- All Implemented Interfaces:
Serializable,Cloneable
public class XIntervalSeries<S extends Comparable<S>> extends ComparableObjectSeries<S>
A list of (x, x-low, x-high, y) data items.- Since:
- 1.0.3
- See Also:
XIntervalSeriesCollection, Serialized Form
-
-
Field Summary
-
Fields inherited from class org.jfree.data.ComparableObjectSeries
data
-
-
Constructor Summary
Constructors Constructor Description XIntervalSeries(S key)Creates a new empty series.XIntervalSeries(S key, boolean autoSort, boolean allowDuplicateXValues)Constructs a new xy-series that contains no data.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidadd(double x, double xLow, double xHigh, double y)Adds a data item to the series and sends aSeriesChangeEventto all registered listeners.voidadd(XIntervalDataItem item, boolean notify)Adds a data item to the series and, if requested, sends aSeriesChangeEventto all registered listeners.ComparableObjectItemgetDataItem(int index)Returns the data item at the specified index.NumbergetX(int index)Returns the x-value for the specified item.doublegetXHighValue(int index)Returns the upper bound of the x-interval for the specified item.doublegetXLowValue(int index)Returns the lower bound of the x-interval for the specified item.doublegetYValue(int index)Returns the y-value for the specified item.-
Methods inherited from class org.jfree.data.ComparableObjectSeries
add, add, add, clear, clone, delete, equals, getAllowDuplicateXValues, getAutoSort, getItemCount, getMaximumItemCount, hashCode, indexOf, remove, remove, setMaximumItemCount, update, updateByIndex
-
Methods inherited from class org.jfree.data.general.Series
addChangeListener, fireSeriesChanged, getKey, getNotify, isEmpty, notifyListeners, removeChangeListener, setNotify
-
-
-
-
Constructor Detail
-
XIntervalSeries
public XIntervalSeries(S key)
Creates a new empty series. By default, items added to the series will be sorted into ascending order by x-value, and duplicate x-values will be allowed (these defaults can be modified with another constructor.- Parameters:
key- the series key (nullnot permitted).
-
XIntervalSeries
public XIntervalSeries(S key, boolean autoSort, boolean allowDuplicateXValues)
Constructs a new xy-series that contains no data. You can specify whether or not duplicate x-values are allowed for the series.- Parameters:
key- the series key (nullnot permitted).autoSort- a flag that controls whether or not the items in the series are sorted.allowDuplicateXValues- a flag that controls whether duplicate x-values are allowed.
-
-
Method Detail
-
add
public void add(double x, double xLow, double xHigh, double y)
Adds a data item to the series and sends aSeriesChangeEventto all registered listeners.- Parameters:
x- the x-value.y- the y-value.xLow- the lower bound of the y-interval.xHigh- the upper bound of the y-interval.
-
add
public void add(XIntervalDataItem item, boolean notify)
Adds a data item to the series and, if requested, sends aSeriesChangeEventto all registered listeners.- Parameters:
item- the data item (nullnot permitted).notify- notify listeners?- Since:
- 1.0.18
-
getX
public Number getX(int index)
Returns the x-value for the specified item.- Parameters:
index- the item index.- Returns:
- The x-value (never
null).
-
getXLowValue
public double getXLowValue(int index)
Returns the lower bound of the x-interval for the specified item.- Parameters:
index- the item index.- Returns:
- The lower bound of the x-interval.
- Since:
- 1.0.10
-
getXHighValue
public double getXHighValue(int index)
Returns the upper bound of the x-interval for the specified item.- Parameters:
index- the item index.- Returns:
- The upper bound of the x-interval.
- Since:
- 1.0.10
-
getYValue
public double getYValue(int index)
Returns the y-value for the specified item.- Parameters:
index- the item index.- Returns:
- The y-value.
-
getDataItem
public ComparableObjectItem getDataItem(int index)
Returns the data item at the specified index.- Overrides:
getDataItemin classComparableObjectSeries<S extends Comparable<S>>- Parameters:
index- the item index.- Returns:
- The data item.
-
-