Uses of Class
org.apache.lucene.store.DataOutput
-
Packages that use DataOutput Package Description org.apache.lucene.store Binary i/o API, used for all index data.org.apache.lucene.util Some utility classes.org.apache.lucene.util.fst Finite state transducersorg.apache.lucene.util.packed The packed package provides random access capable arrays of positive longs. -
-
Uses of DataOutput in org.apache.lucene.store
Subclasses of DataOutput in org.apache.lucene.store Modifier and Type Class Description classBufferedIndexOutputBase implementation class for bufferedIndexOutput.classByteArrayDataOutputDataOutput backed by a byte array.classChecksumIndexOutputWrites bytes through to a primary IndexOutput, computing checksum.protected static classFSDirectory.FSIndexOutputclassIndexOutputAbstract base class for output to a file in a Directory.classMockIndexOutputWrapperUsed by MockRAMDirectory to create an output stream that will throw an IOException on fake disk full, track max disk space actually used, and maybe throw random IOExceptions.classOutputStreamDataOutputADataOutputwrapping a plainOutputStream.classRAMOutputStreamA memory-residentIndexOutputimplementation. -
Uses of DataOutput in org.apache.lucene.util
Subclasses of DataOutput in org.apache.lucene.util Modifier and Type Class Description classPagedBytes.PagedBytesDataOutputclassThrottledIndexOutputIntentionally slow IndexOutput for testing.Methods in org.apache.lucene.util that return DataOutput Modifier and Type Method Description static DataOutputCodecUtil. writeHeader(DataOutput out, String codec, int version)Methods in org.apache.lucene.util with parameters of type DataOutput Modifier and Type Method Description static DataOutputCodecUtil. writeHeader(DataOutput out, String codec, int version)voidByteBlockPool. writePool(DataOutput out)Writes the pools content to the givenDataOutput -
Uses of DataOutput in org.apache.lucene.util.fst
Methods in org.apache.lucene.util.fst with parameters of type DataOutput Modifier and Type Method Description voidFST. save(DataOutput out)voidByteSequenceOutputs. write(BytesRef prefix, DataOutput out)voidIntSequenceOutputs. write(IntsRef prefix, DataOutput out)voidNoOutputs. write(Object prefix, DataOutput out)abstract voidOutputs. write(T output, DataOutput out)voidPairOutputs. write(PairOutputs.Pair<A,B> output, DataOutput writer)voidPositiveIntOutputs. write(Long output, DataOutput out)voidUpToTwoPositiveIntOutputs. write(Object _output, DataOutput out) -
Uses of DataOutput in org.apache.lucene.util.packed
Fields in org.apache.lucene.util.packed declared as DataOutput Modifier and Type Field Description protected DataOutputPackedInts.Writer. outMethods in org.apache.lucene.util.packed with parameters of type DataOutput Modifier and Type Method Description static PackedInts.WriterPackedInts. getWriter(DataOutput out, int valueCount, int bitsPerValue)Create a packed integer array writer for the given number of values at the given bits/value.Constructors in org.apache.lucene.util.packed with parameters of type DataOutput Constructor Description Writer(DataOutput out, int valueCount, int bitsPerValue)
-