Interface IDataTable
A
DataTable contains a collection of DataRow objects.-
Method Summary
Modifier and TypeMethodDescriptionintReturns the count of rows in the table.getRows()Returns a read-onlyListwhich contains all data rows in this table.Returns anIDataTableSchema} object describing the structure of this table.longReturns 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-onlyListwhich contains all data rows in this table. All modification methods are unsupported, except the methodclear().- Returns:
- a
Listpointing to allIDataRowinstances
-