public abstract class

AbstractIntervalXYDataset

extends AbstractXYDataset
implements IntervalXYDataset
java.lang.Object
   ↳ org.jfree.data.general.AbstractDataset
     ↳ org.jfree.data.general.AbstractSeriesDataset
       ↳ org.jfree.data.xy.AbstractXYDataset
         ↳ org.jfree.data.xy.AbstractIntervalXYDataset
Known Direct Subclasses

Class Overview

An base class that you can use to create new implementations of the IntervalXYDataset interface.

Summary

Public Constructors
AbstractIntervalXYDataset()
Public Methods
double getEndXValue(int series, int item)
Returns the end x-value (as a double primitive) for an item within a series.
double getEndYValue(int series, int item)
Returns the end y-value (as a double primitive) for an item within a series.
double getStartXValue(int series, int item)
Returns the start x-value (as a double primitive) for an item within a series.
double getStartYValue(int series, int item)
Returns the start y-value (as a double primitive) for an item within a series.
[Expand]
Inherited Methods
From class org.jfree.data.xy.AbstractXYDataset
From class org.jfree.data.general.AbstractSeriesDataset
From class org.jfree.data.general.AbstractDataset
From class java.lang.Object
From interface java.io.ObjectInputValidation
From interface org.jfree.data.general.Dataset
From interface org.jfree.data.general.SeriesChangeListener
From interface org.jfree.data.general.SeriesDataset
From interface org.jfree.data.xy.IntervalXYDataset
From interface org.jfree.data.xy.XYDataset

Public Constructors

public AbstractIntervalXYDataset ()

Public Methods

public double getEndXValue (int series, int item)

Returns the end x-value (as a double primitive) for an item within a series.

Parameters
series the series index (zero-based).
item the item index (zero-based).
Returns
  • The value.

public double getEndYValue (int series, int item)

Returns the end y-value (as a double primitive) for an item within a series.

Parameters
series the series (zero-based index).
item the item (zero-based index).
Returns
  • The value.

public double getStartXValue (int series, int item)

Returns the start x-value (as a double primitive) for an item within a series.

Parameters
series the series index (zero-based).
item the item index (zero-based).
Returns
  • The value.

public double getStartYValue (int series, int item)

Returns the start y-value (as a double primitive) for an item within a series.

Parameters
series the series index (zero-based).
item the item index (zero-based).
Returns
  • The value.