Package org.h2.mvstore
Class Cursor<K,V>
- java.lang.Object
-
- org.h2.mvstore.Cursor<K,V>
-
- Type Parameters:
K- the key typeV- the value type
- All Implemented Interfaces:
java.util.Iterator<K>
public final class Cursor<K,V> extends java.lang.Object implements java.util.Iterator<K>A cursor to iterate over elements in ascending or descending order.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description KgetKey()Get the last read key if there was one.VgetValue()Get the last read value if there was one.booleanhasNext()Knext()voidskip(long n)Skip over that many entries.
-
-
-
Constructor Detail
-
Cursor
public Cursor(RootReference<K,V> rootReference, K from, K to)
-
Cursor
public Cursor(RootReference<K,V> rootReference, K from, K to, boolean reverse)
- Parameters:
rootReference- of the treefrom- starting key (inclusive), if null start from the first / last keyto- ending key (inclusive), if null there is no boundaryreverse- true if tree should be iterated in key's descending order
-
-
Method Detail
-
hasNext
public boolean hasNext()
- Specified by:
hasNextin interfacejava.util.Iterator<K>
-
getKey
public K getKey()
Get the last read key if there was one.- Returns:
- the key or null
-
getValue
public V getValue()
Get the last read value if there was one.- Returns:
- the value or null
-
skip
public void skip(long n)
Skip over that many entries. This method is relatively fast (for this map implementation) even if many entries need to be skipped.- Parameters:
n- the number of entries to skip
-
-