Uses of Class
org.apache.lucene.store.IndexOutput

Packages that use IndexOutput
org.apache.lucene.codecs Codecs API: API for customization of the encoding and structure of the index. 
org.apache.lucene.codecs.lucene40 Lucene 4.0 file format. 
org.apache.lucene.index Code to maintain and access indices. 
org.apache.lucene.store Binary i/o API, used for all index data. 
 

Uses of IndexOutput in org.apache.lucene.codecs
 

Methods in org.apache.lucene.codecs with parameters of type IndexOutput
abstract  void PostingsWriterBase.start(IndexOutput termsOut)
          Called once after startup, before any terms have been added.
protected  void BlockTreeTermsWriter.writeHeader(IndexOutput out)
          Writes the terms file header.
protected  void BlockTreeTermsWriter.writeIndexHeader(IndexOutput out)
          Writes the index file header.
protected  void BlockTreeTermsWriter.writeIndexTrailer(IndexOutput indexOut, long dirStart)
          Writes the index file trailer.
 long MultiLevelSkipListWriter.writeSkip(IndexOutput output)
          Writes the buffered skip lists to the given output.
protected abstract  void MultiLevelSkipListWriter.writeSkipData(int level, IndexOutput skipBuffer)
          Subclasses must implement the actual skip data encoding in this method.
protected  void BlockTreeTermsWriter.writeTrailer(IndexOutput out, long dirStart)
          Writes the terms file trailer.
 

Uses of IndexOutput in org.apache.lucene.codecs.lucene40
 

Methods in org.apache.lucene.codecs.lucene40 with parameters of type IndexOutput
 void Lucene40PostingsWriter.start(IndexOutput termsOut)
           
protected  void Lucene40SkipListWriter.writeSkipData(int level, IndexOutput skipBuffer)
           
 

Constructors in org.apache.lucene.codecs.lucene40 with parameters of type IndexOutput
Lucene40SkipListWriter(int skipInterval, int numberOfSkipLevels, int docCount, IndexOutput freqOutput, IndexOutput proxOutput)
          Sole constructor.
 

Uses of IndexOutput in org.apache.lucene.index
 

Constructors in org.apache.lucene.index with parameters of type IndexOutput
SortedBytesMergeUtils.IndexOutputBytesRefConsumer(IndexOutput datOut)
          Sole constructor.
 

Uses of IndexOutput in org.apache.lucene.store
 

Subclasses of IndexOutput in org.apache.lucene.store
 class BufferedIndexOutput
          Base implementation class for buffered IndexOutput.
 class ChecksumIndexOutput
          Writes bytes through to a primary IndexOutput, computing checksum.
protected static class FSDirectory.FSIndexOutput
          Writes output with RandomAccessFile.write(byte[], int, int)
 class RAMOutputStream
          A memory-resident IndexOutput implementation.
 

Methods in org.apache.lucene.store that return IndexOutput
abstract  IndexOutput Directory.createOutput(String name, IOContext context)
          Creates a new, empty file in the directory with the given name.
 IndexOutput NRTCachingDirectory.createOutput(String name, IOContext context)
           
 IndexOutput FileSwitchDirectory.createOutput(String name, IOContext context)
           
 IndexOutput CompoundFileDirectory.createOutput(String name, IOContext context)
           
 IndexOutput RAMDirectory.createOutput(String name, IOContext context)
          Creates a new, empty file in the directory with the given name.
 IndexOutput TrackingDirectoryWrapper.createOutput(String name, IOContext context)
           
 IndexOutput FSDirectory.createOutput(String name, IOContext context)
          Creates an IndexOutput for the file with the given name.
 

Methods in org.apache.lucene.store with parameters of type IndexOutput
protected  int BufferedIndexInput.flushBuffer(IndexOutput out, long numBytes)
          Flushes the in-memory bufer to the given output, copying at most numBytes.
 void RAMOutputStream.writeTo(IndexOutput out)
          Copy the current contents of this buffer to the named output.
 

Constructors in org.apache.lucene.store with parameters of type IndexOutput
ChecksumIndexOutput(IndexOutput main)
           
 



Copyright © 2000-2012 Apache Software Foundation. All Rights Reserved.