Package org.h2.index
Class QueryExpressionCursor
java.lang.Object
org.h2.index.QueryExpressionCursor
- All Implemented Interfaces:
Cursor
The cursor implementation of a query expression index.
-
Constructor Summary
ConstructorsConstructorDescriptionQueryExpressionCursor(QueryExpressionIndex index, ResultInterface result, SearchRow first, SearchRow last) -
Method Summary
-
Constructor Details
-
QueryExpressionCursor
public QueryExpressionCursor(QueryExpressionIndex index, ResultInterface result, SearchRow first, SearchRow last)
-
-
Method Details
-
get
Description copied from interface:CursorGet the complete current row. All column are available. -
getSearchRow
Description copied from interface:CursorGet the current row. Only the data for indexed columns is available in this row.- Specified by:
getSearchRowin interfaceCursor- Returns:
- the search row
-
next
public boolean next()Description copied from interface:CursorSkip to the next row if one is available. -
previous
public boolean previous()Description copied from interface:CursorSkip to the previous row if one is available. No filtering is made here.
-