Interface IDataTable
A 
DataTable contains a collection of DataRow objects.- 
Method SummaryModifier 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.IterableforEach, iterator, spliterator
- 
Method Details- 
getSchemaIDataTableSchema getSchema()Returns anIDataTableSchema} object describing the structure of this table.- Returns:
- the table schema
 
- 
getRowCountint getRowCount()Returns the count of rows in the table.- Returns:
- count of rows in this table
 
- 
getTotalRowCountlong getTotalRowCount()Returns the total count of rows in the data store.- Returns:
- the total count of rows in the data store
 
- 
getRowsReturns a read-onlyListwhich contains all data rows in this table. All modification methods are unsupported, except the methodclear(). Theclear()method, however, is deprecated and will become unsupported as well in Mendix 10.- Returns:
- a Listpointing to allIDataRowinstances
 
 
-