Project JXTA

Uses of Class
net.jxta.impl.xindice.core.DBException

Packages that use DBException
net.jxta.impl.cm   
net.jxta.impl.xindice.core   
net.jxta.impl.xindice.core.data   
net.jxta.impl.xindice.core.filer   
net.jxta.impl.xindice.core.indexer   
 

Uses of DBException in net.jxta.impl.cm
 

Methods in net.jxta.impl.cm that throw DBException
 boolean Indexer.open()
           
 boolean Indexer.create()
           
 boolean Indexer.close()
           
 void Indexer.addToIndex(Map indexables, long pos)
           
 void Indexer.removeFromIndex(Map indexables, long pos)
           
 

Uses of DBException in net.jxta.impl.xindice.core
 

Methods in net.jxta.impl.xindice.core that throw DBException
 boolean DBObject.create()
          create creates a new DBObject and any associated resources for the new DBObject, such as disk files, etc.
 boolean DBObject.open()
          open opens the DBObject
 boolean DBObject.isOpened()
          isOpened returns whether or not the DBObject is opened for business.
 boolean DBObject.exists()
          exists returns whether or not a physical representation of this DBObject actually exists.
 boolean DBObject.drop()
          drop instructs the DBObjectimplementation to remove itself from existence.
 boolean DBObject.close()
          close closes the DBObject
 

Uses of DBException in net.jxta.impl.xindice.core.data
 

Methods in net.jxta.impl.xindice.core.data that throw DBException
 boolean RecordSet.hasMoreRecords()
          hasMoreRecords returns whether or not there are any Records left in the set.
 Record RecordSet.getNextRecord()
          getNextRecord returns the next Record in the set.
 Key RecordSet.getNextKey()
          getNextKey returns the next Record's Key, and skips the RecordSet ahead to the next Record.
 Value RecordSet.getNextValue()
          getNextValue returns the next Record's Value, and skips the RecordSet ahead to the next Record.
 

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

Subclasses of DBException 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 BTreeException
          A BTreeException is thrown by the BTree if an exception occurs in the managing of the BTree.
 class BTreeNotFoundException
          A BTreeNotFoundException is thrown by the BTree if a Value can't be found in the BTree.
 class FilerException
          A FilerException is thrown by a Filer if an exception occurs in the managing of the Filer.
 

Methods in net.jxta.impl.xindice.core.filer that throw DBException
protected  void Paged.checkOpened()
           
 boolean Paged.create()
           
 boolean Paged.open()
           
 boolean Paged.close()
           
 boolean Paged.drop()
           
 void Paged.flush()
           
 Record MemFiler.readRecord(Key key)
           
 Record MemFiler.readRecord(long pos)
           
 long MemFiler.writeRecord(Key key, Value value)
           
 boolean MemFiler.deleteRecord(Key key)
           
 long MemFiler.getRecordCount()
           
 RecordSet MemFiler.getRecordSet()
           
 Record Filer.readRecord(Key key)
          readRecord returns a Record from the Filer based on the specified Key.
 Record Filer.readRecord(long pos)
          readRecord returns a Record from the Filer at the specified position.
 long Filer.writeRecord(Key key, Value value)
          writeRecord writes a Value to the Filer based on the specified Key.
 boolean Filer.deleteRecord(Key key)
          deleteRecord removes a Record from the Filer based on the specified Key.
 long Filer.getRecordCount()
          getRecordCount returns the number of Records in the Filer.
 RecordSet Filer.getRecordSet()
          getRecordSet returns a RecordSet object for the current Filer.
 void Filer.flush()
          flush forcefully flushes any unwritten buffers to disk.
 boolean BTreeFiler.open()
           
 boolean BTreeFiler.create()
           
 Record BTreeFiler.readRecord(Key key)
           
 Record BTreeFiler.readRecord(long pos)
           
 long BTreeFiler.writeRecord(Key key, Value value)
           
 long BTreeFiler.writeRecord(Key key, Value value, long lifetime, long expiration)
           
 long BTreeFiler.writeRecord(long pos, Value value)
           
 boolean BTreeFiler.deleteRecord(Key key)
           
 long BTreeFiler.getRecordCount()
           
 RecordSet BTreeFiler.getRecordSet()
           
 void BTreeFiler.flush()
           
 boolean BTree.open()
           
 boolean BTree.create()
           
 

Uses of DBException in net.jxta.impl.xindice.core.indexer
 

Methods in net.jxta.impl.xindice.core.indexer that throw DBException
 void NameIndexer.remove(Key key)
           
 void NameIndexer.add(Key key, long pos)
           
 void NameIndexer.flush()
           
 void Indexer.remove(Key key)
          remove removes all references to the specified Key from the Indexer.
 void Indexer.add(Key key, long pos)
          add adds a Document to the Indexer.
 void Indexer.flush()
          flush forcefully flushes any unwritten buffers to disk.
 


JXTA J2SE