Module org.jfree.chart
Package org.jfree.data.category
Interface IntervalCategoryDataset<R extends Comparable<R>,C extends Comparable<C>>
-
- All Superinterfaces:
CategoryDataset<R,C>,Dataset,KeyedValues2D<R,C>,Values2D
- All Known Subinterfaces:
GanttCategoryDataset<R,C>
- All Known Implementing Classes:
DefaultIntervalCategoryDataset,SlidingGanttCategoryDataset,TaskSeriesCollection
public interface IntervalCategoryDataset<R extends Comparable<R>,C extends Comparable<C>> extends CategoryDataset<R,C>
A category dataset that defines a value range for each series/category combination.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description NumbergetEndValue(int series, int category)Returns the end value for the interval for a given series and category.NumbergetEndValue(R series, C 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(R series, C category)Returns the start value for the interval for a given series and category.-
Methods inherited from interface org.jfree.data.general.Dataset
addChangeListener, removeChangeListener
-
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 Detail
-
getStartValue
Number getStartValue(int series, int category)
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:
getEndValue(int, int)
-
getStartValue
Number getStartValue(R series, C category)
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(Comparable, Comparable)
-
getEndValue
Number getEndValue(int series, int category)
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:
getStartValue(int, int)
-
getEndValue
Number getEndValue(R series, C category)
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:
getStartValue(Comparable, Comparable)
-
-