MVRTreeMap.RTreeCursor
A cursor to iterate over a subset of the keys.
| Methods |
| boolean |
check(boolean leaf, SpatialKey key, SpatialKey test)
Check a given key.
|
| boolean |
check(boolean leaf, SpatialKey key, SpatialKey test)
Check a given key.
Parameters:
leaf - if the key is from a leaf page
key - the stored key
test - the user-supplied test key
Returns:
true if there is a match
|
| void |
fetchNext()
Fetch the next entry if there is one.
|
| void |
fetchNext()
Fetch the next entry if there is one.
|
| boolean |
hasNext()
|
| boolean |
hasNext()
|
| SpatialKey |
next()
|
| SpatialKey |
next()
|
| void |
remove()
|
| void |
remove()
|
| void |
skip(long n)
Skip over that many entries.
|
| 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
|
|