- All Superinterfaces:
CategoryDataset
,Dataset
,KeyedValues2D
,Values2D
- All Known Subinterfaces:
GanttCategoryDataset
- All Known Implementing Classes:
DefaultIntervalCategoryDataset
,SlidingGanttCategoryDataset
,TaskSeriesCollection
A category dataset that defines a value range for each series/category
combination.
-
Method Summary
Modifier and TypeMethodDescriptiongetEndValue
(int series, int category) Returns the end value for the interval for a given series and category.getEndValue
(Comparable series, Comparable category) Returns the end value for the interval for a given series and category.getStartValue
(int series, int category) Returns the start value for the interval for a given series and category.getStartValue
(Comparable series, Comparable category) Returns the start value for the interval for a given series and category.Methods inherited from interface org.jfree.data.general.Dataset
addChangeListener, getGroup, removeChangeListener, setGroup
Methods inherited from interface org.jfree.data.KeyedValues2D
getColumnIndex, getColumnKey, getColumnKeys, getRowIndex, getRowKey, getRowKeys, getValue
Methods 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
). - See Also:
-
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
). - See Also:
-
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
). - See Also:
-
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
). - See Also:
-