| org.jfree.data.category.IntervalCategoryDataset
All known Subclasses: org.jfree.data.category.DefaultIntervalCategoryDataset,
IntervalCategoryDataset | public interface IntervalCategoryDataset extends CategoryDataset(Code) | | A category dataset that defines a value range for each series/category
combination.
|
Method Summary | |
public 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). Parameters: category - the category (zero-based index). | public Number | getEndValue(Comparable series, Comparable category) Returns the end value for the interval for a given series and category.
Parameters: series - the series key. Parameters: category - the category key. | public 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). Parameters: category - the category (zero-based index). | public Number | getStartValue(Comparable series, Comparable category) Returns the start value for the interval for a given series and category.
Parameters: series - the series key. Parameters: category - the category key. |
getEndValue | public Number getEndValue(int series, int category)(Code) | | Returns the end value for the interval for a given series and category.
Parameters: series - the series (zero-based index). Parameters: category - the category (zero-based index). The end value (possibly null ). |
getEndValue | public Number getEndValue(Comparable series, Comparable category)(Code) | | Returns the end value for the interval for a given series and category.
Parameters: series - the series key. Parameters: category - the category key. The end value (possibly null ). |
getStartValue | public Number getStartValue(int series, int category)(Code) | | Returns the start value for the interval for a given series and category.
Parameters: series - the series (zero-based index). Parameters: category - the category (zero-based index). The start value (possibly null ). |
getStartValue | public Number getStartValue(Comparable series, Comparable category)(Code) | | Returns the start value for the interval for a given series and category.
Parameters: series - the series key. Parameters: category - the category key. The start value (possibly null ). |
|
|