Uses of Class
org.apache.lucene.store.IndexOutput
-
Packages that use IndexOutput Package Description org.apache.lucene.codecs Codecs API: API for customization of the encoding and structure of the index.org.apache.lucene.codecs.lucene41 Lucene 4.1 file format.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 Modifier and Type Method Description abstract voidPostingsWriterBase. init(IndexOutput termsOut)Called once after startup, before any terms have been added.protected voidBlockTreeTermsWriter. writeHeader(IndexOutput out)Writes the terms file header.protected voidBlockTreeTermsWriter. writeIndexHeader(IndexOutput out)Writes the index file header.protected voidBlockTreeTermsWriter. writeIndexTrailer(IndexOutput indexOut, long dirStart)Writes the index file trailer.longMultiLevelSkipListWriter. writeSkip(IndexOutput output)Writes the buffered skip lists to the given output.protected abstract voidMultiLevelSkipListWriter. writeSkipData(int level, IndexOutput skipBuffer)Subclasses must implement the actual skip data encoding in this method.protected voidBlockTreeTermsWriter. writeTrailer(IndexOutput out, long dirStart)Writes the terms file trailer. -
Uses of IndexOutput in org.apache.lucene.codecs.lucene41
Methods in org.apache.lucene.codecs.lucene41 with parameters of type IndexOutput Modifier and Type Method Description voidLucene41PostingsWriter. init(IndexOutput termsOut) -
Uses of IndexOutput in org.apache.lucene.store
Subclasses of IndexOutput in org.apache.lucene.store Modifier and Type Class Description classBufferedIndexOutputBase implementation class for bufferedIndexOutput.classChecksumIndexOutputWrites bytes through to a primary IndexOutput, computing checksum.protected static classFSDirectory.FSIndexOutputWrites output withRandomAccessFile.write(byte[], int, int)classRAMOutputStreamA memory-residentIndexOutputimplementation.Methods in org.apache.lucene.store that return IndexOutput Modifier and Type Method Description IndexOutputCompoundFileDirectory. createOutput(String name, IOContext context)abstract IndexOutputDirectory. createOutput(String name, IOContext context)Creates a new, empty file in the directory with the given name.IndexOutputFileSwitchDirectory. createOutput(String name, IOContext context)IndexOutputFilterDirectory. createOutput(String name, IOContext context)IndexOutputFSDirectory. createOutput(String name, IOContext context)Creates an IndexOutput for the file with the given name.IndexOutputNRTCachingDirectory. createOutput(String name, IOContext context)IndexOutputRAMDirectory. createOutput(String name, IOContext context)Creates a new, empty file in the directory with the given name.IndexOutputRateLimitedDirectoryWrapper. createOutput(String name, IOContext context)IndexOutputTrackingDirectoryWrapper. createOutput(String name, IOContext context)Methods in org.apache.lucene.store with parameters of type IndexOutput Modifier and Type Method Description protected intBufferedIndexInput. flushBuffer(IndexOutput out, long numBytes)Flushes the in-memory buffer to the given output, copying at mostnumBytes.Constructors in org.apache.lucene.store with parameters of type IndexOutput Constructor Description ChecksumIndexOutput(IndexOutput main)
-