org.apache.lucene.store
public abstract class BufferedIndexInput extends IndexInput
Method Summary | |
---|---|
Object | clone() |
long | getFilePointer() |
byte | readByte() |
void | readBytes(byte[] b, int offset, int len) |
protected abstract void | readInternal(byte[] b, int offset, int length) Expert: implements buffer refill. |
void | seek(long pos) |
protected abstract void | seekInternal(long pos) Expert: implements seek. |
Parameters: b the array to read bytes into offset the offset in the array to start storing bytes length the number of bytes to read
(byte[],int,int)
will occur.See Also: (byte[],int,int)