Uses of Class
org.apache.lucene.store.ByteBuffersDataOutput
-
Packages that use ByteBuffersDataOutput Package Description org.apache.lucene.codecs.lucene80 Components from the Lucene 8.0 index format Seeorg.apache.lucene.codecs.lucene84
for an overview of the index format.org.apache.lucene.codecs.lucene84 Lucene 8.4 file format.org.apache.lucene.codecs.uniformsplit Pluggable term index / block terms dictionary implementations.org.apache.lucene.store Binary i/o API, used for all index data. -
-
Uses of ByteBuffersDataOutput in org.apache.lucene.codecs.lucene80
Methods in org.apache.lucene.codecs.lucene80 with parameters of type ByteBuffersDataOutput Modifier and Type Method Description private void
Lucene80DocValuesConsumer. writeBlock(long[] values, int length, long gcd, ByteBuffersDataOutput buffer)
-
Uses of ByteBuffersDataOutput in org.apache.lucene.codecs.lucene84
Fields in org.apache.lucene.codecs.lucene84 declared as ByteBuffersDataOutput Modifier and Type Field Description private ByteBuffersDataOutput
Lucene84SkipWriter. freqNormOut
-
Uses of ByteBuffersDataOutput in org.apache.lucene.codecs.uniformsplit
Fields in org.apache.lucene.codecs.uniformsplit declared as ByteBuffersDataOutput Modifier and Type Field Description protected ByteBuffersDataOutput
BlockWriter. blockLinesWriteBuffer
protected ByteBuffersDataOutput
BlockWriter. blockWriteBuffer
protected ByteBuffersDataOutput
BlockWriter. termStatesWriteBuffer
Methods in org.apache.lucene.codecs.uniformsplit with parameters of type ByteBuffersDataOutput Modifier and Type Method Description protected void
UniformSplitTermsWriter. writeFieldsMetadata(int fieldsNumber, ByteBuffersDataOutput fieldsOutput)
-
Uses of ByteBuffersDataOutput in org.apache.lucene.store
Fields in org.apache.lucene.store declared as ByteBuffersDataOutput Modifier and Type Field Description private ByteBuffersDataOutput
ByteBuffersIndexOutput. delegate
Fields in org.apache.lucene.store with type parameters of type ByteBuffersDataOutput Modifier and Type Field Description private java.util.function.Supplier<ByteBuffersDataOutput>
ByteBuffersDirectory. bbOutputSupplier
A supplier ofByteBuffersDataOutput
instances used to buffer up the content of written files.private java.util.function.Consumer<ByteBuffersDataOutput>
ByteBuffersIndexOutput. onClose
static java.util.function.BiFunction<java.lang.String,ByteBuffersDataOutput,IndexInput>
ByteBuffersDirectory. OUTPUT_AS_BYTE_ARRAY
static java.util.function.BiFunction<java.lang.String,ByteBuffersDataOutput,IndexInput>
ByteBuffersDirectory. OUTPUT_AS_MANY_BUFFERS
static java.util.function.BiFunction<java.lang.String,ByteBuffersDataOutput,IndexInput>
ByteBuffersDirectory. OUTPUT_AS_MANY_BUFFERS_LUCENE
static java.util.function.BiFunction<java.lang.String,ByteBuffersDataOutput,IndexInput>
ByteBuffersDirectory. OUTPUT_AS_ONE_BUFFER
private java.util.function.BiFunction<java.lang.String,ByteBuffersDataOutput,IndexInput>
ByteBuffersDirectory. outputToInput
Conversion between a buffered index output and the corresponding index input for a given file.Methods in org.apache.lucene.store that return ByteBuffersDataOutput Modifier and Type Method Description static ByteBuffersDataOutput
ByteBuffersDataOutput. newResettableInstance()
Method parameters in org.apache.lucene.store with type arguments of type ByteBuffersDataOutput Modifier and Type Method Description (package private) IndexOutput
ByteBuffersDirectory.FileEntry. createOutput(java.util.function.BiFunction<java.lang.String,ByteBuffersDataOutput,IndexInput> outputToInput)
Constructors in org.apache.lucene.store with parameters of type ByteBuffersDataOutput Constructor Description ByteBuffersIndexOutput(ByteBuffersDataOutput delegate, java.lang.String resourceDescription, java.lang.String name)
ByteBuffersIndexOutput(ByteBuffersDataOutput delegate, java.lang.String resourceDescription, java.lang.String name, java.util.zip.Checksum checksum, java.util.function.Consumer<ByteBuffersDataOutput> onClose)
Constructor parameters in org.apache.lucene.store with type arguments of type ByteBuffersDataOutput Constructor Description ByteBuffersDirectory(LockFactory factory, java.util.function.Supplier<ByteBuffersDataOutput> bbOutputSupplier, java.util.function.BiFunction<java.lang.String,ByteBuffersDataOutput,IndexInput> outputToInput)
ByteBuffersDirectory(LockFactory factory, java.util.function.Supplier<ByteBuffersDataOutput> bbOutputSupplier, java.util.function.BiFunction<java.lang.String,ByteBuffersDataOutput,IndexInput> outputToInput)
ByteBuffersIndexOutput(ByteBuffersDataOutput delegate, java.lang.String resourceDescription, java.lang.String name, java.util.zip.Checksum checksum, java.util.function.Consumer<ByteBuffersDataOutput> onClose)
-