Package org.h2.mvstore
Class CursorPos<K,V>
- java.lang.Object
-
- org.h2.mvstore.CursorPos<K,V>
-
public final class CursorPos<K,V> extends java.lang.ObjectA position in a cursor. Instance represents a node in the linked list, which traces path from a specific (target) key within a leaf node all the way up to te root (bottom up path).
-
-
Field Summary
Fields Modifier and Type Field Description intindexIndex of the key (within page above) used to go down to a lower level in case of intermediate nodes, or index of the target key for leaf a node.Page<K,V>pageThe page at the current level.CursorPos<K,V>parentNext node in the linked list, representing the position within parent level, or null, if we are at the root level already.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringtoString()
-