Uses of Interface
org.jrdf.graph.local.index.longindex.sesame.BTreeIterator

Packages that use BTreeIterator
org.jrdf.graph.local.index.longindex.sesame   
 

Uses of BTreeIterator in org.jrdf.graph.local.index.longindex.sesame
 

Methods in org.jrdf.graph.local.index.longindex.sesame that return BTreeIterator
 BTreeIterator TripleBTree.getIterator(Long... node)
           
 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.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.
 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.
 

Constructors in org.jrdf.graph.local.index.longindex.sesame with parameters of type BTreeIterator
EntryIterator(BTreeIterator newIterator)