Package mdbtools.publicapi
Interface RandomAccess
-
- All Known Implementing Classes:
File,MemoryRandomAccess
public interface RandomAccess
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidclose()longlength()longread(byte[] ba, int offset, int length)voidseek(long l)
-
-
-
Method Detail
-
close
void close() throws java.io.IOException- Throws:
java.io.IOException
-
length
long length() throws java.io.IOException- Throws:
java.io.IOException
-
seek
void seek(long l) throws java.io.IOException
- Throws:
java.io.IOException
-
read
long read(byte[] ba, int offset, int length) throws java.io.IOException- Throws:
java.io.IOException
-
-