Project JXTA

Uses of Class
net.jxta.impl.xindice.core.filer.BTreeException

Packages that use BTreeException
net.jxta.impl.cm   
net.jxta.impl.xindice.core.filer   
 

Uses of BTreeException in net.jxta.impl.cm
 

Methods in net.jxta.impl.cm that throw BTreeException
 void Indexer.search(IndexQuery query, String name, BTreeCallback callback)
           
 void Indexer.purge(List list)
          purge all index entries pointing to a certain record.
 void Indexer.purge(long pos)
          purge all index entries pointing to a certain record.
 

Uses of BTreeException in net.jxta.impl.xindice.core.filer
 

Subclasses of BTreeException in net.jxta.impl.xindice.core.filer
 class BTreeCorruptException
          A BTreecorruptException is thrown by the BTree if the BTree appears to be corrupted in some way.
 class BTreeNotFoundException
          A BTreeNotFoundException is thrown by the BTree if a Value can't be found in the BTree.
 

Methods in net.jxta.impl.xindice.core.filer that throw BTreeException
 long BTree.addValue(Value value, long pointer)
          addValue adds a Value to the BTree and associates a pointer with it.
 long BTree.addValue(BTree.BTreeRootInfo root, Value value, long pointer)
          addValue adds a Value to the BTree and associates a pointer with it.
 long BTree.removeValue(Value value)
          removeValue removes a Value from the BTree and returns the associated pointer for it.
 long BTree.removeValue(BTree.BTreeRootInfo root, Value value)
          removeValue removes a Value from the BTree and returns the associated pointer for it.
 long BTree.findValue(Value value)
          findValue finds a Value in the BTree and returns the associated pointer for it.
 long BTree.findValue(BTree.BTreeRootInfo root, Value value)
          findValue finds a Value in the BTree and returns the associated pointer for it.
 void BTree.query(IndexQuery query, BTreeCallback callback)
          query performs a query against the BTree and performs callback operations to report the search results.
 void BTree.query(BTree.BTreeRootInfo root, IndexQuery query, BTreeCallback callback)
          query performs a query against the BTree and performs callback operations to report the search results.
protected  BTree.BTreeRootInfo BTree.createBTreeRoot(Value v)
          createBTreeRoot creates a new BTree root node in the BTree file based on the provided value for the main tree.
protected  BTree.BTreeRootInfo BTree.createBTreeRoot(BTree.BTreeRootInfo root, Value v)
          createBTreeRoot creates a new BTree root node in the BTree file based on the provided root information, and value for the tree.
protected  BTree.BTreeRootInfo BTree.findBTreeRoot(Value v)
          findBTreeRoot searches for a BTreeRoot in the file and returns the BTreeRootInfo for the specified value based on the main tree.
protected  BTree.BTreeRootInfo BTree.findBTreeRoot(BTree.BTreeRootInfo root, Value v)
          findBTreeRoot searches for a BTreeRoot in the file and returns the BTreeRootInfo for the specified value based on the provided BTreeRootInfo value.
protected  void BTree.setRootNode(BTree.BTreeRootInfo root, net.jxta.impl.xindice.core.filer.BTree.BTreeNode newRoot)
          setRootNode resets the root for the specified root object to the provided BTreeNode's page number.
protected  void BTree.setRootNode(net.jxta.impl.xindice.core.filer.BTree.BTreeNode rootNode)
          setRootNode resets the file's root to the provided BTreeNode's page number.
 


JXTA J2SE