Package org.jfree.data
Interface IntervalCategoryDataset
- All Superinterfaces:
CategoryDataset,Dataset,KeyedValues2D,Values2D
- All Known Subinterfaces:
GanttCategoryDataset
- All Known Implementing Classes:
DefaultIntervalCategoryDataset,TaskSeriesCollection
public interface IntervalCategoryDataset extends CategoryDataset
A category dataset that defines a value range for each series/category
combination.
- Author:
- Eduard Martinescu
-
Method Summary
Modifier and Type Method Description NumbergetEndValue(int series, int category)Returns the end value for the interval for a given series and category.NumbergetEndValue(Comparable series, Comparable category)Returns the end value for the interval for a given series and category.NumbergetStartValue(int series, int category)Returns the start value for the interval for a given series and category.NumbergetStartValue(Comparable series, Comparable category)Returns the start value for the interval for a given series and category.Methods inherited from interface org.jfree.data.Dataset
addChangeListener, getGroup, removeChangeListener, setGroupMethods inherited from interface org.jfree.data.KeyedValues2D
getColumnIndex, getColumnKey, getColumnKeys, getRowIndex, getRowKey, getRowKeys, getValueMethods inherited from interface org.jfree.data.Values2D
getColumnCount, getRowCount, getValue
-
Method Details
-
getStartValue
Returns the start value for the interval for a given series and category.- Parameters:
series- the series (zero-based index).category- the category (zero-based index).- Returns:
- the start value (possibly
null).
-
getStartValue
Returns the start value for the interval for a given series and category.- Parameters:
series- the series key.category- the category key.- Returns:
- the start value (possibly
null).
-
getEndValue
Returns the end value for the interval for a given series and category.- Parameters:
series- the series (zero-based index).category- the category (zero-based index).- Returns:
- the end value (possibly
null).
-
getEndValue
Returns the end value for the interval for a given series and category.- Parameters:
series- the series key.category- the category key.- Returns:
- the end value (possibly
null).
-