Interface DataTable<N,V>

Type Parameters:
N - Type of variable names
V - Type of variable values
All Superinterfaces:
Iterable<List<V>>
All Known Implementing Classes:
DataTableImpl

public interface DataTable<N,V> extends Iterable<List<V>>
Data table implementation.
Version:
$Id: $Id
Author:
YUS24
  • Method Details

    • variables

      List<N> variables()

      variables.

      Returns:
      The names of the variables in the table
    • columnCount

      int columnCount()

      columnCount.

      Returns:
      The number of columns in the table
    • rowCount

      int rowCount()

      rowCount.

      Returns:
      The number of rows in the table
    • addRow

      void addRow(List<? extends V> row)

      addRow.

      Parameters:
      row - The index of the row to retrieve