Uses of Interface
org.apache.lucene.store.RandomAccessInput
-
Packages that use RandomAccessInput Package Description org.apache.lucene.codecs.lucene70 Components from the Lucene 7.0 index format.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.store Binary i/o API, used for all index data.org.apache.lucene.util.fst Finite state transducersorg.apache.lucene.util.packed Packed integer arrays and streams. -
-
Uses of RandomAccessInput in org.apache.lucene.codecs.lucene70
Fields in org.apache.lucene.codecs.lucene70 with type parameters of type RandomAccessInput Modifier and Type Field Description private java.util.Map<java.lang.Integer,RandomAccessInput>
Lucene70NormsProducer. dataInputs
Methods in org.apache.lucene.codecs.lucene70 that return RandomAccessInput Modifier and Type Method Description private RandomAccessInput
Lucene70NormsProducer. getDataInput(FieldInfo field, Lucene70NormsProducer.NormsEntry entry)
-
Uses of RandomAccessInput in org.apache.lucene.codecs.lucene80
Fields in org.apache.lucene.codecs.lucene80 declared as RandomAccessInput Modifier and Type Field Description (package private) RandomAccessInput
IndexedDISI. jumpTable
(package private) RandomAccessInput
Lucene80DocValuesProducer.VaryingBPVReader. rankSlice
(package private) RandomAccessInput
Lucene80DocValuesProducer.VaryingBPVReader. slice
Fields in org.apache.lucene.codecs.lucene80 with type parameters of type RandomAccessInput Modifier and Type Field Description private java.util.Map<java.lang.Integer,RandomAccessInput>
Lucene80NormsProducer. dataInputs
private java.util.Map<java.lang.Integer,RandomAccessInput>
Lucene80NormsProducer. disiJumpTables
Methods in org.apache.lucene.codecs.lucene80 that return RandomAccessInput Modifier and Type Method Description static RandomAccessInput
IndexedDISI. createJumpTable(IndexInput slice, long offset, long length, int jumpTableEntryCount)
Helper method for usingIndexedDISI(IndexInput, RandomAccessInput, int, byte, long)
.private RandomAccessInput
Lucene80NormsProducer. getDataInput(FieldInfo field, Lucene80NormsProducer.NormsEntry entry)
private RandomAccessInput
Lucene80NormsProducer. getDisiJumpTable(FieldInfo field, Lucene80NormsProducer.NormsEntry entry)
Constructors in org.apache.lucene.codecs.lucene80 with parameters of type RandomAccessInput Constructor Description IndexedDISI(IndexInput blockSlice, RandomAccessInput jumpTable, int jumpTableEntryCount, byte denseRankPower, long cost)
This constructor allows to pass the slice and jumpTable directly in case it helps reuse.VaryingBPVReader(Lucene80DocValuesProducer.NumericEntry entry, RandomAccessInput slice)
-
Uses of RandomAccessInput in org.apache.lucene.store
Classes in org.apache.lucene.store that implement RandomAccessInput Modifier and Type Class Description class
BufferedIndexInput
Base implementation class for bufferedIndexInput
.private static class
BufferedIndexInput.SlicedIndexInput
Implementation of an IndexInput that reads from a portion of a file.class
ByteBufferIndexInput
Base IndexInput implementation that uses an array of ByteBuffers to represent a file.(package private) static class
ByteBufferIndexInput.MultiBufferImpl
This class adds offset support to ByteBufferIndexInput, which is needed for slices.(package private) static class
ByteBufferIndexInput.SingleBufferImpl
Optimization of ByteBufferIndexInput for when there is only one bufferclass
ByteBuffersDataInput
class
ByteBuffersIndexInput
(package private) static class
NIOFSDirectory.NIOFSIndexInput
Reads bytes withFileChannel.read(ByteBuffer, long)
(package private) static class
RAFDirectory.RAFIndexInput
Reads bytes withRandomAccessFile.seek(long)
followed byRandomAccessFile.read(byte[], int, int)
.(package private) static class
SimpleFSDirectory.SimpleFSIndexInput
Reads bytes withSeekableByteChannel.read(ByteBuffer)
(package private) static class
WindowsDirectory.WindowsIndexInput
Methods in org.apache.lucene.store that return RandomAccessInput Modifier and Type Method Description RandomAccessInput
ByteBuffersIndexInput. randomAccessSlice(long offset, long length)
RandomAccessInput
IndexInput. randomAccessSlice(long offset, long length)
Creates a random-access slice of this index input, with the given offset and length. -
Uses of RandomAccessInput in org.apache.lucene.util.fst
Fields in org.apache.lucene.util.fst declared as RandomAccessInput Modifier and Type Field Description private RandomAccessInput
ReverseRandomAccessReader. in
Constructors in org.apache.lucene.util.fst with parameters of type RandomAccessInput Constructor Description ReverseRandomAccessReader(RandomAccessInput in)
-
Uses of RandomAccessInput in org.apache.lucene.util.packed
Fields in org.apache.lucene.util.packed declared as RandomAccessInput Modifier and Type Field Description (package private) RandomAccessInput
DirectReader.DirectPackedReader1. in
(package private) RandomAccessInput
DirectReader.DirectPackedReader12. in
(package private) RandomAccessInput
DirectReader.DirectPackedReader16. in
(package private) RandomAccessInput
DirectReader.DirectPackedReader2. in
(package private) RandomAccessInput
DirectReader.DirectPackedReader20. in
(package private) RandomAccessInput
DirectReader.DirectPackedReader24. in
(package private) RandomAccessInput
DirectReader.DirectPackedReader28. in
(package private) RandomAccessInput
DirectReader.DirectPackedReader32. in
(package private) RandomAccessInput
DirectReader.DirectPackedReader4. in
(package private) RandomAccessInput
DirectReader.DirectPackedReader40. in
(package private) RandomAccessInput
DirectReader.DirectPackedReader48. in
(package private) RandomAccessInput
DirectReader.DirectPackedReader56. in
(package private) RandomAccessInput
DirectReader.DirectPackedReader64. in
(package private) RandomAccessInput
DirectReader.DirectPackedReader8. in
Methods in org.apache.lucene.util.packed with parameters of type RandomAccessInput Modifier and Type Method Description static LongValues
DirectMonotonicReader. getInstance(DirectMonotonicReader.Meta meta, RandomAccessInput data)
Retrieves an instance from the specified slice.static LongValues
DirectReader. getInstance(RandomAccessInput slice, int bitsPerValue)
Retrieves an instance from the specified slice written decodingbitsPerValue
for each valuestatic LongValues
DirectReader. getInstance(RandomAccessInput slice, int bitsPerValue, long offset)
Retrieves an instance from the specifiedoffset
of the given slice decodingbitsPerValue
for each valueConstructors in org.apache.lucene.util.packed with parameters of type RandomAccessInput Constructor Description DirectPackedReader1(RandomAccessInput in, long offset)
DirectPackedReader12(RandomAccessInput in, long offset)
DirectPackedReader16(RandomAccessInput in, long offset)
DirectPackedReader2(RandomAccessInput in, long offset)
DirectPackedReader20(RandomAccessInput in, long offset)
DirectPackedReader24(RandomAccessInput in, long offset)
DirectPackedReader28(RandomAccessInput in, long offset)
DirectPackedReader32(RandomAccessInput in, long offset)
DirectPackedReader4(RandomAccessInput in, long offset)
DirectPackedReader40(RandomAccessInput in, long offset)
DirectPackedReader48(RandomAccessInput in, long offset)
DirectPackedReader56(RandomAccessInput in, long offset)
DirectPackedReader64(RandomAccessInput in, long offset)
DirectPackedReader8(RandomAccessInput in, long offset)
-