Uses of Class
gov.nist.nlpir.irf.index.braf.HashBlock

Packages that use HashBlock
gov.nist.nlpir.irf.index.braf classes and interfaces that support indexes implemented using buffered random access files 
 

Uses of HashBlock in gov.nist.nlpir.irf.index.braf
 

Fields in gov.nist.nlpir.irf.index.braf declared as HashBlock
private  HashBlock[] PersistentIrfHashtable.blocks
          This array is composed of slots.
(package private)  HashBlock PersistentIrfHashtableEnumerator.currentBlock
           
 

Methods in gov.nist.nlpir.irf.index.braf that return HashBlock
static HashBlock HashBlock.readFrom(BufferedRandomAccessFile in)
          Reads a HashBlock back from the file it was previously written with writeTo().
(package private)  HashBlock PersistentIrfHashtable.getBlock(int blockNr)
          This method is only used by the PersistentIrfHashtable itself and by its enumerator.
private  HashBlock PersistentIrfHashtable.readBlock(int blockNr)
          This method is the symetric of writeBlock(), as it reads a HashBlock back from disk.
 

Methods in gov.nist.nlpir.irf.index.braf with parameters of type HashBlock
private  void PersistentIrfHashtable.writeBlock(HashBlock toWrite, int blockNr)
          As the name tells, this method writes a block to disk, using a tuned serialization scheme with a BufferedRandomAccessFile.