Uses of Interface
org.eclipse.rdf4j.sail.nativerdf.btree.RecordIterator
Package
Description
The Native Store.
B-Tree on disk implementation.
-
Uses of RecordIterator in org.eclipse.rdf4j.sail.nativerdf
-
Uses of RecordIterator in org.eclipse.rdf4j.sail.nativerdf.btree
Modifier and TypeMethodDescriptionBTree.iterateAll()
Returns an iterator that iterates over all values in this B-Tree.BTree.iterateRange
(byte[] minValue, byte[] maxValue) Returns an iterator that iterates over all values between minValue and maxValue, inclusive.BTree.iterateRangedValues
(byte[] searchKey, byte[] searchMask, byte[] minValue, byte[] maxValue) Returns an iterator that iterates over all values between minValue and maxValue (inclusive) and returns the values that match the supplied searchKey after searchMask has been applied to the value.BTree.iterateValues
(byte[] searchKey, byte[] searchMask) Returns an iterator that iterates over all values and returns the values that match the supplied searchKey after searchMask has been applied to the value.