AbstractFunctionCursor
Abstract function cursor. This implementation filters the rows (only returns
entries that are larger or equal to "first", and smaller than last or equal
to "last").
| Methods |
|
AbstractFunctionCursor(FunctionIndex index, SearchRow first, SearchRow last, Session session)
|
|
AbstractFunctionCursor(FunctionIndex index, SearchRow first, SearchRow last, Session session)
Parameters:
index - index
first - first row
last - last row
session - session
|
| Row |
get()
|
| Row |
get()
|
| SearchRow |
getSearchRow()
|
| SearchRow |
getSearchRow()
|
| boolean |
next()
|
| boolean |
next()
|
| boolean |
nextImpl()
Skip to the next row if one is available.
|
| boolean |
nextImpl()
Skip to the next row if one is available. This method does not filter.
Returns:
true if another row is available
|
| boolean |
previous()
|
| boolean |
previous()
|
|