Uses of Class
org.apache.lucene.store.ByteBufferIndexInput
-
Packages that use ByteBufferIndexInput Package Description org.apache.lucene.store Binary i/o API, used for all index data. -
-
Uses of ByteBufferIndexInput in org.apache.lucene.store
Subclasses of ByteBufferIndexInput in org.apache.lucene.store Modifier and Type Class Description (package private) static class
ByteBufferIndexInput.MultiBufferImpl
Deprecated.This class adds offset support to ByteBufferIndexInput, which is needed for slices.(package private) static class
ByteBufferIndexInput.SingleBufferImpl
Deprecated.Optimization of ByteBufferIndexInput for when there is only one bufferMethods in org.apache.lucene.store that return ByteBufferIndexInput Modifier and Type Method Description protected ByteBufferIndexInput
ByteBufferIndexInput. buildSlice(java.lang.String sliceDescription, long offset, long length)
Deprecated.Builds the actual sliced IndexInput (may apply extra offset in subclasses).protected ByteBufferIndexInput
ByteBufferIndexInput.MultiBufferImpl. buildSlice(java.lang.String sliceDescription, long ofs, long length)
ByteBufferIndexInput
ByteBufferIndexInput. clone()
Deprecated.protected ByteBufferIndexInput
ByteBufferIndexInput. newCloneInstance(java.lang.String newResourceDescription, java.nio.ByteBuffer[] newBuffers, int offset, long length)
Deprecated.Factory method that creates a suitable implementation of this class for the given ByteBuffers.static ByteBufferIndexInput
ByteBufferIndexInput. newInstance(java.lang.String resourceDescription, java.nio.ByteBuffer[] buffers, long length, int chunkSizePower, ByteBufferGuard guard)
Deprecated.ByteBufferIndexInput
ByteBufferIndexInput. slice(java.lang.String sliceDescription, long offset, long length)
Deprecated.Creates a slice of this index input, with the given description, offset, and length.
-