Uses of Class
org.apache.lucene.store.BufferedIndexInput
-
Packages that use BufferedIndexInput Package Description org.apache.lucene.misc.store Misc Directory implementations.org.apache.lucene.store Binary i/o API, used for all index data. -
-
Uses of BufferedIndexInput in org.apache.lucene.misc.store
Subclasses of BufferedIndexInput in org.apache.lucene.misc.store Modifier and Type Class Description (package private) static class
RAFDirectory.RAFIndexInput
Reads bytes withRandomAccessFile.seek(long)
followed byRandomAccessFile.read(byte[], int, int)
. -
Uses of BufferedIndexInput in org.apache.lucene.store
Subclasses of BufferedIndexInput in org.apache.lucene.store Modifier and Type Class Description private static class
BufferedIndexInput.SlicedIndexInput
Implementation of an IndexInput that reads from a portion of a file.(package private) static class
NIOFSDirectory.NIOFSIndexInput
Reads bytes withFileChannel.read(ByteBuffer, long)
Methods in org.apache.lucene.store that return BufferedIndexInput Modifier and Type Method Description BufferedIndexInput
BufferedIndexInput. clone()
static BufferedIndexInput
BufferedIndexInput. wrap(java.lang.String sliceDescription, IndexInput other, long offset, long length)
Wraps a portion of another IndexInput with buffering.
-