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
IOExceptionpublic abstract long getFilePointer()
throws IOException
IOExceptionpublic abstract long length()
throws IOException
IOExceptionpublic void read(byte[] b)
throws IOException
IOExceptionpublic abstract void read(byte[] b,
int off,
int len)
throws IOException
IOExceptionpublic abstract void seek(long pos)
throws IOException
IOExceptionpublic abstract byte readByte()
throws IOException
IOExceptionpublic abstract int readInt()
throws IOException
IOException