Uses of Class
org.apache.lucene.store.ByteBuffersDataInput
-
Packages that use ByteBuffersDataInput Package Description org.apache.lucene.codecs.compressing Compressing helper classes.org.apache.lucene.codecs.lucene90 Lucene 9.0 file format.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 ByteBuffersDataInput in org.apache.lucene.codecs.compressing
Methods in org.apache.lucene.codecs.compressing with parameters of type ByteBuffersDataInput Modifier and Type Method Description void
CompressionMode.DeflateCompressor. compress(ByteBuffersDataInput buffersInput, DataOutput out)
void
CompressionMode.LZ4FastCompressor. compress(ByteBuffersDataInput buffersInput, DataOutput out)
void
CompressionMode.LZ4HighCompressor. compress(ByteBuffersDataInput buffersInput, DataOutput out)
abstract void
Compressor. compress(ByteBuffersDataInput buffersInput, DataOutput out)
Compress bytes intoout
. -
Uses of ByteBuffersDataInput in org.apache.lucene.codecs.lucene90
Methods in org.apache.lucene.codecs.lucene90 with parameters of type ByteBuffersDataInput Modifier and Type Method Description void
DeflateWithPresetDictCompressionMode.DeflateWithPresetDictCompressor. compress(ByteBuffersDataInput buffersInput, DataOutput out)
void
LZ4WithPresetDictCompressionMode.LZ4WithPresetDictCompressor. compress(ByteBuffersDataInput buffersInput, DataOutput out)
-
Uses of ByteBuffersDataInput in org.apache.lucene.index
Fields in org.apache.lucene.index declared as ByteBuffersDataInput Modifier and Type Field Description (package private) ByteBuffersDataInput
PrefixCodedTerms.TermIterator. input
private ByteBuffersDataInput
FreqProxTermsWriter.SortingPostingsEnum. postingInput
Constructors in org.apache.lucene.index with parameters of type ByteBuffersDataInput Constructor Description TermIterator(long delGen, ByteBuffersDataInput input)
-
Uses of ByteBuffersDataInput in org.apache.lucene.store
Fields in org.apache.lucene.store declared as ByteBuffersDataInput Modifier and Type Field Description private ByteBuffersDataInput
ByteBuffersIndexInput. in
Methods in org.apache.lucene.store that return ByteBuffersDataInput Modifier and Type Method Description ByteBuffersDataInput
ByteBuffersDataInput. slice(long offset, long length)
ByteBuffersDataInput
ByteBuffersDataOutput. toDataInput()
Return aByteBuffersDataInput
for the set of current buffers (ByteBuffersDataOutput.toBufferList()
).Constructors in org.apache.lucene.store with parameters of type ByteBuffersDataInput Constructor Description ByteBuffersIndexInput(ByteBuffersDataInput in, java.lang.String resourceDescription)
-