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.lucene84for 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. dataInputsMethods in org.apache.lucene.codecs.lucene70 that return RandomAccessInput Modifier and Type Method Description private RandomAccessInputLucene70NormsProducer. 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) RandomAccessInputIndexedDISI. jumpTable(package private) RandomAccessInputLucene80DocValuesProducer.VaryingBPVReader. rankSlice(package private) RandomAccessInputLucene80DocValuesProducer.VaryingBPVReader. sliceFields 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. dataInputsprivate java.util.Map<java.lang.Integer,RandomAccessInput>Lucene80NormsProducer. disiJumpTablesMethods in org.apache.lucene.codecs.lucene80 that return RandomAccessInput Modifier and Type Method Description static RandomAccessInputIndexedDISI. createJumpTable(IndexInput slice, long offset, long length, int jumpTableEntryCount)Helper method for usingIndexedDISI(IndexInput, RandomAccessInput, int, byte, long).private RandomAccessInputLucene80NormsProducer. getDataInput(FieldInfo field, Lucene80NormsProducer.NormsEntry entry)private RandomAccessInputLucene80NormsProducer. 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 classBufferedIndexInputBase implementation class for bufferedIndexInput.private static classBufferedIndexInput.SlicedIndexInputImplementation of an IndexInput that reads from a portion of a file.classByteBufferIndexInputBase IndexInput implementation that uses an array of ByteBuffers to represent a file.(package private) static classByteBufferIndexInput.MultiBufferImplThis class adds offset support to ByteBufferIndexInput, which is needed for slices.(package private) static classByteBufferIndexInput.SingleBufferImplOptimization of ByteBufferIndexInput for when there is only one bufferclassByteBuffersDataInputclassByteBuffersIndexInput(package private) static classNIOFSDirectory.NIOFSIndexInputReads bytes withFileChannel.read(ByteBuffer, long)(package private) static classRAFDirectory.RAFIndexInputReads bytes withRandomAccessFile.seek(long)followed byRandomAccessFile.read(byte[], int, int).(package private) static classSimpleFSDirectory.SimpleFSIndexInputDeprecated.Reads bytes withSeekableByteChannel.read(ByteBuffer)(package private) static classWindowsDirectory.WindowsIndexInputMethods in org.apache.lucene.store that return RandomAccessInput Modifier and Type Method Description RandomAccessInputByteBuffersIndexInput. randomAccessSlice(long offset, long length)RandomAccessInputIndexInput. 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 RandomAccessInputReverseRandomAccessReader. inConstructors 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) RandomAccessInputDirectReader.DirectPackedReader1. in(package private) RandomAccessInputDirectReader.DirectPackedReader12. in(package private) RandomAccessInputDirectReader.DirectPackedReader16. in(package private) RandomAccessInputDirectReader.DirectPackedReader2. in(package private) RandomAccessInputDirectReader.DirectPackedReader20. in(package private) RandomAccessInputDirectReader.DirectPackedReader24. in(package private) RandomAccessInputDirectReader.DirectPackedReader28. in(package private) RandomAccessInputDirectReader.DirectPackedReader32. in(package private) RandomAccessInputDirectReader.DirectPackedReader4. in(package private) RandomAccessInputDirectReader.DirectPackedReader40. in(package private) RandomAccessInputDirectReader.DirectPackedReader48. in(package private) RandomAccessInputDirectReader.DirectPackedReader56. in(package private) RandomAccessInputDirectReader.DirectPackedReader64. in(package private) RandomAccessInputDirectReader.DirectPackedReader8. inMethods in org.apache.lucene.util.packed with parameters of type RandomAccessInput Modifier and Type Method Description static DirectMonotonicReaderDirectMonotonicReader. getInstance(DirectMonotonicReader.Meta meta, RandomAccessInput data)Retrieves an instance from the specified slice.static LongValuesDirectReader. getInstance(RandomAccessInput slice, int bitsPerValue)Retrieves an instance from the specified slice written decodingbitsPerValuefor each valuestatic LongValuesDirectReader. getInstance(RandomAccessInput slice, int bitsPerValue, long offset)Retrieves an instance from the specifiedoffsetof the given slice decodingbitsPerValuefor 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)
-