| org.jfree.data.xy.IntervalXYZDataset
IntervalXYZDataset | public interface IntervalXYZDataset extends XYZDataset(Code) | | An extension of the
XYZDataset interface that allows a range of data
to be defined for any of the X values, the Y values, and the Z values.
|
Method Summary | |
public Number | getEndXValue(int series, int item) Returns the ending X value for the specified series and item.
Parameters: series - the series (zero-based index). Parameters: item - the item within a series (zero-based index). | public Number | getEndYValue(int series, int item) Returns the ending Y value for the specified series and item.
Parameters: series - the series (zero-based index). Parameters: item - the item within a series (zero-based index). | public Number | getEndZValue(int series, int item) Returns the ending Z value for the specified series and item.
Parameters: series - the series (zero-based index). Parameters: item - the item within a series (zero-based index). | public Number | getStartXValue(int series, int item) Returns the starting X value for the specified series and item.
Parameters: series - the series (zero-based index). Parameters: item - the item within a series (zero-based index). | public Number | getStartYValue(int series, int item) Returns the starting Y value for the specified series and item.
Parameters: series - the series (zero-based index). Parameters: item - the item within a series (zero-based index). | public Number | getStartZValue(int series, int item) Returns the starting Z value for the specified series and item.
Parameters: series - the series (zero-based index). Parameters: item - the item within a series (zero-based index). |
getEndXValue | public Number getEndXValue(int series, int item)(Code) | | Returns the ending X value for the specified series and item.
Parameters: series - the series (zero-based index). Parameters: item - the item within a series (zero-based index). The ending X value for the specified series and item. |
getEndYValue | public Number getEndYValue(int series, int item)(Code) | | Returns the ending Y value for the specified series and item.
Parameters: series - the series (zero-based index). Parameters: item - the item within a series (zero-based index). The ending Y value for the specified series and item. |
getEndZValue | public Number getEndZValue(int series, int item)(Code) | | Returns the ending Z value for the specified series and item.
Parameters: series - the series (zero-based index). Parameters: item - the item within a series (zero-based index). The ending Z value for the specified series and item. |
getStartXValue | public Number getStartXValue(int series, int item)(Code) | | Returns the starting X value for the specified series and item.
Parameters: series - the series (zero-based index). Parameters: item - the item within a series (zero-based index). The starting X value for the specified series and item. |
getStartYValue | public Number getStartYValue(int series, int item)(Code) | | Returns the starting Y value for the specified series and item.
Parameters: series - the series (zero-based index). Parameters: item - the item within a series (zero-based index). The starting Y value for the specified series and item. |
getStartZValue | public Number getStartZValue(int series, int item)(Code) | | Returns the starting Z value for the specified series and item.
Parameters: series - the series (zero-based index). Parameters: item - the item within a series (zero-based index). The starting Z value for the specified series and item. |
|
|