Interface IDataTable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetRowCount()Returns the count of rows in the table.java.util.List<? extends IDataRow>getRows()Returns a read-onlyListwhich contains all data rows in this table.IDataTableSchemagetSchema()Returns anIDataTableSchema} object describing the structure of this table.longgetTotalRowCount()Returns the total count of rows in the data store.
-
-
-
Method Detail
-
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
java.util.List<? extends IDataRow> getRows()
Returns 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
-
-