TestTableEngines.RowFilter
A filter for rows (lists of objects).
| Methods |
| boolean |
accept(List row)
Check whether the row needs to be processed.
|
| boolean |
accept(List row)
Check whether the row needs to be processed.
Parameters:
row - the row
Returns:
true if yes
|
| Integer |
getInt(List row, int col)
Get an integer from a row.
|
| Integer |
getInt(List row, int col)
Get an integer from a row.
Parameters:
row - the row
col - the column index
Returns:
the value
|
| Long |
getLong(List row, int col)
Get a long from a row.
|
| Long |
getLong(List row, int col)
Get a long from a row.
Parameters:
row - the row
col - the column index
Returns:
the value
|
| String |
getString(List row, int col)
Get a string from a row.
|
| String |
getString(List row, int col)
Get a string from a row.
Parameters:
row - the row
col - the column index
Returns:
the value
|
|