Package org.eclipse.mat.query
Interface IResultTable
- All Superinterfaces:
IResult
,IStructuredResult
- All Known Implementing Classes:
CompareTablesQuery.ComparisonResultTable
,FindLeaksQuery.SuspectsResultTable
,FindLeaksQuery2.SuspectsResultTable
,HashEntriesQuery.Result
,Histogram
,ImmediateDominatorsQuery.ResultImpl
,ListResult
,PropertyResult
,RefinedTable
,UnreachableObjectsHistogram
Interface for results in table-form.
-
Method Summary
Modifier and TypeMethodDescriptiongetRow
(int rowId) Returns the object of the row with the given row number.int
Returns the number of rows in the result table.Methods inherited from interface org.eclipse.mat.query.IResult
getResultMetaData
Methods inherited from interface org.eclipse.mat.query.IStructuredResult
getColumns, getColumnValue, getContext
-
Method Details
-
getRowCount
int getRowCount()Returns the number of rows in the result table.- Returns:
- the number of rows
-
getRow
Returns the object of the row with the given row number.- Parameters:
rowId
- The row number.- Returns:
- an opaque row object representing this row
which can be passed to
IStructuredResult.getContext(Object)
orIStructuredResult.getColumnValue(Object, int)
.
-