Interface MultiValueCategoryDataset<R extends Comparable<R>,​C extends Comparable<C>>

    • Method Detail

      • getValues

        List<? extends NumbergetValues​(int row,
                                         int column)
        Returns a list (possibly empty) of the values for the specified item. The returned list should be unmodifiable.
        Parameters:
        row - the row index (zero-based).
        column - the column index (zero-based).
        Returns:
        The list of values.
      • getValues

        List<? extends NumbergetValues​(R rowKey,
                                         C columnKey)
        Returns a list (possibly empty) of the values for the specified item. The returned list should be unmodifiable.
        Parameters:
        rowKey - the row key (null not permitted).
        columnKey - the column key (null not permitted).
        Returns:
        The list of values.