Interface IDataTable
A
DataTable
contains a collection of DataRow
objects.-
Method Summary
Modifier and TypeMethodDescriptionint
Returns the count of rows in the table.getRows()
Returns a read-onlyList
which contains all data rows in this table.Returns anIDataTableSchema
} object describing the structure of this table.long
Returns the total count of rows in the data store.Methods inherited from interface java.lang.Iterable
forEach, iterator, spliterator
-
Method Details
-
getSchema
IDataTableSchema getSchema()Returns anIDataTableSchema
} object describing the structure of this table.- Returns:
- the table schema
-
getRowCount
int getRowCount()Returns the count of rows in the table.- Returns:
- count of rows in this table
-
getTotalRowCount
long getTotalRowCount()Returns the total count of rows in the data store.- Returns:
- the total count of rows in the data store
-
getRows
Returns a read-onlyList
which contains all data rows in this table. All modification methods are unsupported, also on the list returned by `subList()`.- Returns:
- a
List
pointing to allIDataRow
instances
-