Uses of Class
org.apache.lucene.store.IndexOutput
-
Packages that use IndexOutput Package Description 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.index
Methods in org.apache.lucene.index with parameters of type IndexOutput Modifier and Type Method Description voidFieldInfos. write(IndexOutput output) -
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.FSIndexOutputclassRAMOutputStreamA memory-residentIndexOutputimplementation.Methods in org.apache.lucene.store that return IndexOutput Modifier and Type Method Description abstract IndexOutputDirectory. createOutput(String name)Creates a new, empty file in the directory with the given name.IndexOutputFileSwitchDirectory. createOutput(String name)IndexOutputFSDirectory. createOutput(String name)Creates an IndexOutput for the file with the given name.IndexOutputNRTCachingDirectory. createOutput(String name)IndexOutputRAMDirectory. createOutput(String name)Creates a new, empty file in the directory with the given name.Methods in org.apache.lucene.store with parameters of type IndexOutput Modifier and Type Method Description voidBufferedIndexInput. copyBytes(IndexOutput out, long numBytes)voidIndexInput. copyBytes(IndexOutput out, long numBytes)CopiesnumBytesbytes to the givenIndexOutput.voidRAMInputStream. copyBytes(IndexOutput out, long numBytes)voidSimpleFSDirectory.SimpleFSIndexInput. copyBytes(IndexOutput out, long numBytes)protected intBufferedIndexInput. flushBuffer(IndexOutput out, long numBytes)Flushes the in-memory bufer to the given output, copying at mostnumBytes.voidRAMOutputStream. 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 Constructor Description ChecksumIndexOutput(IndexOutput main)
-