Package org.h2.index
Class RangeCursor
java.lang.Object
org.h2.index.RangeCursor
- All Implemented Interfaces:
Cursor
The cursor implementation for the range index.
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate boolean
private long
private Row
private final long
private final long
private final long
-
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
beforeFirst
private boolean beforeFirst -
current
private long current -
currentRow
-
start
private final long start -
end
private final long end -
step
private final long step
-
-
Constructor Details
-
RangeCursor
RangeCursor(long start, long end, long step)
-
-
Method Details
-
get
Description copied from interface:Cursor
Get the complete current row. All column are available. -
getSearchRow
Description copied from interface:Cursor
Get the current row. Only the data for indexed columns is available in this row.- Specified by:
getSearchRow
in interfaceCursor
- Returns:
- the search row
-
next
public boolean next()Description copied from interface:Cursor
Skip to the next row if one is available. -
previous
public boolean previous()Description copied from interface:Cursor
Skip to the previous row if one is available. No filtering is made here.
-