Uses of Class
org.h2.mvstore.Cursor
-
Packages that use Cursor Package Description org.h2.mvstore A persistent storage for tree maps.org.h2.mvstore.db Helper classes to use the MVStore in the H2 database.org.h2.mvstore.tx Helper classes to use the MVStore in a transactional manner. -
-
Uses of Cursor in org.h2.mvstore
Methods in org.h2.mvstore that return Cursor Modifier and Type Method Description Cursor<K,V>
MVMap. cursor(K from)
Get a cursor to iterate over a number of keys and values in the latest version of this map.Cursor<K,V>
MVMap. cursor(K from, K to, boolean reverse)
Get a cursor to iterate over a number of keys and values in the latest version of this map.Cursor<K,V>
MVMap. cursor(RootReference<K,V> rootReference, K from, K to, boolean reverse)
Get a cursor to iterate over a number of keys and values. -
Uses of Cursor in org.h2.mvstore.db
Fields in org.h2.mvstore.db declared as Cursor Modifier and Type Field Description private Cursor<java.lang.Long,ValueRow>
MVPlainTempResult. cursor
Cursor for theMVPlainTempResult.next()
method.private Cursor<ValueRow,java.lang.Long>
MVSortedTempResult. cursor
Cursor for theMVSortedTempResult.next()
method. -
Uses of Cursor in org.h2.mvstore.tx
Fields in org.h2.mvstore.tx declared as Cursor Modifier and Type Field Description protected Cursor<K,VersionedValue<V>>
TransactionMap.TMIterator. cursor
private Cursor<K,VersionedValue<V>>
TransactionMap.RepeatableIterator. uncommittedCursor
-