C# Class Lucene.Net.Index.MockIndexInput

IndexInput backed by a byte[] for testing.
Inheritance: Lucene.Net.Store.BufferedIndexInput
Exibir arquivo Open project: apache/lucenenet Class Usage Examples

Public Methods

Method Description
Dispose ( ) : void
Length ( ) : long
MockIndexInput ( byte bytes )

Protected Methods

Method Description
ReadInternal ( byte dest, int destOffset, int len ) : void
SeekInternal ( long pos ) : void

Method Details

Dispose() public method

public Dispose ( ) : void
return void

Length() public method

public Length ( ) : long
return long

MockIndexInput() public method

public MockIndexInput ( byte bytes )
bytes byte

ReadInternal() protected method

protected ReadInternal ( byte dest, int destOffset, int len ) : void
dest byte
destOffset int
len int
return void

SeekInternal() protected method

protected SeekInternal ( long pos ) : void
pos long
return void