Interface Values2D

  • Method Summary

    Modifier and Type
    Method
    Description
    int
    Returns the number of columns in the table.
    int
    Returns the number of rows in the table.
    getValue(int row, int column)
    Returns a value from the table.
  • Method Details

    • getRowCount

      Returns the number of rows in the table.
      Returns:
      The row count.
    • getColumnCount

      Returns the number of columns in the table.
      Returns:
      The column count.
    • getValue

      Number getValue(int row, int column)
      Returns a value from the table.
      Parameters:
      row - the row index (zero-based).
      column - the column index (zero-based).
      Returns:
      The value (possibly null).
      Throws:
      IndexOutOfBoundsException - if the row or column is out of bounds.