| Methods in org.openrdf.sesame.sailimpl.nativerdf.btree that return BTreeIterator |
BTreeIterator |
BTree.iterateAll()
Returns an iterator that iterates over all values in this B-Tree. |
BTreeIterator |
BTree.iterateRange(byte[] minValue,
byte[] maxValue)
Returns an iterator that iterates over all values between minValue and
maxValue, inclusive. |
BTreeIterator |
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. |
BTreeIterator |
BTree.iterateValues(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. |