org.jfree.data.category
Interface IntervalCategoryDataset
- CategoryDataset, Dataset, KeyedValues2D, Values2D
- GanttCategoryDataset
- DefaultIntervalCategoryDataset, TaskSeriesCollection
A category dataset that defines a value range for each series/category
combination.
Number | getEndValue(Comparable series, Comparable category)- Returns the end value for the interval for a given series and category.
|
Number | getEndValue(int series, int category)- Returns the end value for the interval for a given series and category.
|
Number | getStartValue(Comparable series, Comparable category)- Returns the start value for the interval for a given series and category.
|
Number | getStartValue(int series, int category)- Returns the start value for the interval for a given series and category.
|
getEndValue
public Number getEndValue(Comparable series,
Comparable category) Returns the end value for the interval for a given series and category.
series - the series key.category - the category key.
- The end value (possibly
null).
getEndValue
public Number getEndValue(int series,
int category) Returns the end value for the interval for a given series and category.
series - the series (zero-based index).category - the category (zero-based index).
- The end value (possibly
null).
getStartValue
public Number getStartValue(Comparable series,
Comparable category) Returns the start value for the interval for a given series and category.
series - the series key.category - the category key.
- The start value (possibly
null).
getStartValue
public Number getStartValue(int series,
int category) Returns the start value for the interval for a given series and category.
series - the series (zero-based index).category - the category (zero-based index).
- The start value (possibly
null).