Package org.h2.mvstore.db
Class MVSecondaryIndex.MVStoreCursor
java.lang.Object
org.h2.mvstore.db.MVSecondaryIndex.MVStoreCursor
- All Implemented Interfaces:
Cursor
- Enclosing class:
MVSecondaryIndex
A cursor.
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionMVStoreCursor
(SessionLocal session, TransactionMap.TMIterator<SearchRow, Value, SearchRow> it, MVTable mvTable) -
Method Summary
-
Field Details
-
session
-
it
-
mvTable
-
current
-
row
-
-
Constructor Details
-
MVStoreCursor
MVStoreCursor(SessionLocal session, TransactionMap.TMIterator<SearchRow, Value, SearchRow> it, MVTable mvTable)
-
-
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.
-