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
 void Indexer.addToIndex(Map<String,String> indexables, long pos)
           
 boolean Indexer.close()
           
 boolean Indexer.create()
           
 boolean Indexer.open()
           
 void Indexer.removeFromIndex(Map<String,String> indexables, long pos)
           
 

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

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

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

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

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.close()
           
 boolean BTreeFiler.create()
           
 boolean Paged.create()
           
 boolean BTree.create()
           
 boolean MemFiler.deleteRecord(Key key)
           
 boolean Filer.deleteRecord(Key key)
          deleteRecord removes a Record from the Filer based on the specified Key.
 boolean BTreeFiler.deleteRecord(Key key)
           
 boolean Paged.drop()
           
 void Filer.flush()
          flush forcefully flushes any unwritten buffers to disk.
 void Paged.flush()
           
 long MemFiler.getRecordCount()
           
 long Filer.getRecordCount()
          getRecordCount returns the number of Records in the Filer.
 long BTreeFiler.getRecordCount()
           
 RecordSet MemFiler.getRecordSet()
           
 RecordSet Filer.getRecordSet()
          getRecordSet returns a RecordSet object for the current Filer.
 RecordSet BTreeFiler.getRecordSet()
           
 boolean BTreeFiler.open()
           
 boolean Paged.open()
           
 boolean BTree.open()
           
 Record MemFiler.readRecord(Key key)
           
 Record Filer.readRecord(Key key)
          readRecord returns a Record from the Filer based on the specified Key.
 Record BTreeFiler.readRecord(Key key)
           
 Record MemFiler.readRecord(long pos)
           
 Record Filer.readRecord(long pos)
          readRecord returns a Record from the Filer at the specified position.
 Record BTreeFiler.readRecord(long pos)
           
 long MemFiler.writeRecord(Key key, Value value)
           
 long Filer.writeRecord(Key key, Value value)
          writeRecord writes a Value to the Filer based on the specified Key.
 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)
           
 

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

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


JXSE