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 void
FieldInfos. write(IndexOutput output)
-
Uses of IndexOutput in org.apache.lucene.store
Subclasses of IndexOutput in org.apache.lucene.store Modifier and Type Class Description class
BufferedIndexOutput
Base implementation class for bufferedIndexOutput
.class
ChecksumIndexOutput
Writes bytes through to a primary IndexOutput, computing checksum.protected static class
FSDirectory.FSIndexOutput
class
RAMOutputStream
A memory-residentIndexOutput
implementation.Methods in org.apache.lucene.store that return IndexOutput Modifier and Type Method Description abstract IndexOutput
Directory. createOutput(String name)
Creates a new, empty file in the directory with the given name.IndexOutput
FileSwitchDirectory. createOutput(String name)
IndexOutput
FSDirectory. createOutput(String name)
Creates an IndexOutput for the file with the given name.IndexOutput
NRTCachingDirectory. createOutput(String name)
IndexOutput
RAMDirectory. 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 void
BufferedIndexInput. copyBytes(IndexOutput out, long numBytes)
void
IndexInput. copyBytes(IndexOutput out, long numBytes)
CopiesnumBytes
bytes to the givenIndexOutput
.void
RAMInputStream. copyBytes(IndexOutput out, long numBytes)
void
SimpleFSDirectory.SimpleFSIndexInput. copyBytes(IndexOutput out, long numBytes)
protected int
BufferedIndexInput. flushBuffer(IndexOutput out, long numBytes)
Flushes the in-memory bufer to the given output, copying at mostnumBytes
.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 Constructor Description ChecksumIndexOutput(IndexOutput main)
-