Interface IntervalCategoryDataset

    • Method Detail

      • getStartValue

        java.lang.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

        java.lang.Number getStartValue​(java.lang.Comparable series,
                                       java.lang.Comparable 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

        java.lang.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

        java.lang.Number getEndValue​(java.lang.Comparable series,
                                     java.lang.Comparable 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)