public abstract class SubStoreReader
extends Object
StructuredStore
. A sub-store
provides most of the interface of a RandomAccessFile, and takes care of
reading from the correct subset of the main StructuredStore.Constructor and Description |
---|
SubStoreReader() |
Modifier and Type | Method and Description |
---|---|
abstract void |
close() |
abstract long |
getFilePointer() |
abstract long |
length() |
void |
read(byte[] b) |
abstract void |
read(byte[] b,
int off,
int len) |
abstract byte |
readByte() |
abstract int |
readInt() |
abstract void |
seek(long pos) |
public abstract void close() throws IOException
IOException
public abstract long getFilePointer() throws IOException
IOException
public abstract long length() throws IOException
IOException
public void read(byte[] b) throws IOException
IOException
public abstract void read(byte[] b, int off, int len) throws IOException
IOException
public abstract void seek(long pos) throws IOException
IOException
public abstract byte readByte() throws IOException
IOException
public abstract int readInt() throws IOException
IOException