Uses of Class
org.apache.lucene.store.DataOutput
-
Packages that use DataOutput Package Description org.apache.lucene.codecs Codecs API: API for customization of the encoding and structure of the index.org.apache.lucene.codecs.compressing StoredFieldsFormat that allows cross-document and cross-field compression of stored fields.org.apache.lucene.codecs.lucene41 Lucene 4.1 file format.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 Packed integer arrays and streams. -
-
Uses of DataOutput in org.apache.lucene.codecs
Methods in org.apache.lucene.codecs with parameters of type DataOutput Modifier and Type Method Description abstract voidPostingsWriterBase. encodeTerm(long[] longs, DataOutput out, FieldInfo fieldInfo, BlockTermState state, boolean absolute)Encode metadata as long[] and byte[].static voidCodecUtil. writeHeader(DataOutput out, String codec, int version)Writes a codec header, which records both a string to identify the file and a version number. -
Uses of DataOutput in org.apache.lucene.codecs.compressing
Methods in org.apache.lucene.codecs.compressing with parameters of type DataOutput Modifier and Type Method Description abstract voidCompressor. compress(byte[] bytes, int off, int len, DataOutput out)Compress bytes intoout. -
Uses of DataOutput in org.apache.lucene.codecs.lucene41
Methods in org.apache.lucene.codecs.lucene41 with parameters of type DataOutput Modifier and Type Method Description voidLucene41PostingsWriter. encodeTerm(long[] longs, DataOutput out, FieldInfo fieldInfo, BlockTermState _state, boolean absolute) -
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.FSIndexOutputWrites output withRandomAccessFile.write(byte[], int, int)classIndexOutputAbstract base class for output to a file in a Directory.classOutputStreamDataOutputADataOutputwrapping a plainOutputStream.classRAMOutputStreamA memory-residentIndexOutputimplementation.Methods in org.apache.lucene.store with parameters of type DataOutput Modifier and Type Method Description voidRAMOutputStream. writeTo(DataOutput out)Copy the current contents of this buffer to the named output. -
Uses of DataOutput in org.apache.lucene.util
Subclasses of DataOutput in org.apache.lucene.util Modifier and Type Class Description classGrowableByteArrayDataOutputADataOutputthat can be used to build a byte[].classPagedBytes.PagedBytesDataOutput -
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)voidCharSequenceOutputs. write(CharsRef prefix, DataOutput out)voidIntSequenceOutputs. write(IntsRef prefix, DataOutput out)voidNoOutputs. write(Object prefix, DataOutput out)abstract voidOutputs. write(T output, DataOutput out)Encode an output value into aDataOutput.voidPairOutputs. write(PairOutputs.Pair<A,B> output, DataOutput writer)voidPositiveIntOutputs. write(Long output, DataOutput out)voidOutputs. writeFinalOutput(T output, DataOutput out)Encode an final node output value into aDataOutput. -
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 DataOutputAbstractBlockPackedWriter. outprotected DataOutputAbstractBlockPackedWriter. outprotected 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, float acceptableOverheadRatio)Create a packed integer array writer for the given output, format, value count, and number of bits per value.static PackedInts.WriterPackedInts. getWriterNoHeader(DataOutput out, PackedInts.Format format, int valueCount, int bitsPerValue, int mem)Expert: Create a packed integer array writer for the given output, format, value count, and number of bits per value.voidGrowableWriter. save(DataOutput out)voidPackedInts.Mutable. save(DataOutput out)Save this mutable intoout.Constructors in org.apache.lucene.util.packed with parameters of type DataOutput Constructor Description BlockPackedWriter(DataOutput out, int blockSize)Sole constructor.MonotonicBlockPackedWriter(DataOutput out, int blockSize)Sole constructor.PackedDataOutput(DataOutput out)Create a new instance that wrapsout.Writer(DataOutput out, int valueCount, int bitsPerValue)
-