Uses of Class
org.apache.lucene.store.IndexInput
-
Packages that use IndexInput Package Description org.apache.lucene.index Code to maintain and access indices.org.apache.lucene.store Binary i/o API, used for all index data.org.apache.lucene.util Some utility classes. -
-
Uses of IndexInput in org.apache.lucene.index
Subclasses of IndexInput in org.apache.lucene.index Modifier and Type Class Description classMockIndexInputIndexInput backed by a byte[] for testing. -
Uses of IndexInput in org.apache.lucene.store
Subclasses of IndexInput in org.apache.lucene.store Modifier and Type Class Description classBufferedIndexInputBase implementation class for bufferedIndexInput.classChecksumIndexInputWrites bytes through to a primary IndexOutput, computing checksum as it goes.classMockIndexInputWrapperUsed by MockDirectoryWrapper to create an input stream that keeps track of when it's been closed.protected static classNIOFSDirectory.NIOFSIndexInputclassRAMInputStreamA memory-residentIndexInputimplementation.protected static classSimpleFSDirectory.SimpleFSIndexInputprotected static classWindowsDirectory.WindowsIndexInputMethods in org.apache.lucene.store that return IndexInput Modifier and Type Method Description IndexInputDirectIOLinuxDirectory. openInput(String name, int bufferSize)abstract IndexInputDirectory. openInput(String name)Returns a stream reading an existing file.IndexInputDirectory. openInput(String name, int bufferSize)Returns a stream reading an existing file, with the specified read buffer size.IndexInputFileSwitchDirectory. openInput(String name)IndexInputFSDirectory. openInput(String name)IndexInputMMapDirectory. openInput(String name, int bufferSize)Creates an IndexInput for the file with the given name.IndexInputMockDirectoryWrapper. openInput(String name)IndexInputNIOFSDirectory. openInput(String name, int bufferSize)Creates an IndexInput for the file with the given name.IndexInputNRTCachingDirectory. openInput(String name)IndexInputNRTCachingDirectory. openInput(String name, int bufferSize)IndexInputRAMDirectory. openInput(String name)Returns a stream reading an existing file.IndexInputSimpleFSDirectory. openInput(String name, int bufferSize)Creates an IndexInput for the file with the given name.IndexInputWindowsDirectory. openInput(String name, int bufferSize)Methods in org.apache.lucene.store with parameters of type IndexInput Modifier and Type Method Description static boolean_TestHelper. isSimpleFSIndexInput(IndexInput is)Returns true if the instance of the provided input stream is actually an SimpleFSIndexInput.static boolean_TestHelper. isSimpleFSIndexInputClone(IndexInput is)Returns true if the provided input stream is an SimpleFSIndexInput and is a clone, that is it does not own its underlying file descriptor.static boolean_TestHelper. isSimpleFSIndexInputOpen(IndexInput is)Given an instance of SimpleFSDirectory.SimpleFSIndexInput, this method returns true if the underlying file descriptor is valid, and false otherwise.voidMockDirectoryWrapper. removeIndexInput(IndexInput in, String name)Constructors in org.apache.lucene.store with parameters of type IndexInput Constructor Description ChecksumIndexInput(IndexInput main)MockIndexInputWrapper(MockDirectoryWrapper dir, String name, IndexInput delegate)Construct an empty output buffer. -
Uses of IndexInput in org.apache.lucene.util
Methods in org.apache.lucene.util with parameters of type IndexInput Modifier and Type Method Description voidPagedBytes. copy(IndexInput in, long byteCount)Read this many bytes from in
-