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.
Author:
YUS24
  • Method Details

    • variables

      List<N> variables()
    • columnCount

      int columnCount()
    • rowCount

      int rowCount()
    • addRow

      void addRow(List<? extends V> row)