Package org.eclipse.mat.parser.io
Class SimpleBufferedRandomAccessInputStream
- java.lang.Object
-
- java.io.InputStream
-
- org.eclipse.mat.parser.io.SimpleBufferedRandomAccessInputStream
-
- All Implemented Interfaces:
Closeable
,AutoCloseable
public class SimpleBufferedRandomAccessInputStream extends InputStream
-
-
Constructor Summary
Constructors Constructor Description SimpleBufferedRandomAccessInputStream(RandomAccessFile in)
SimpleBufferedRandomAccessInputStream(RandomAccessFile in, int bufsize)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
close()
long
getFilePointer()
boolean
markSupported()
int
read()
int
read(byte[] b, int off, int len)
int
readInt()
int
readIntArray(int[] a)
long
readLong()
int
readLongArray(long[] a)
void
seek(long pos)
-
Methods inherited from class java.io.InputStream
available, mark, nullInputStream, read, readAllBytes, readNBytes, readNBytes, reset, skip, transferTo
-
-
-
-
Constructor Detail
-
SimpleBufferedRandomAccessInputStream
public SimpleBufferedRandomAccessInputStream(RandomAccessFile in) throws IOException
- Throws:
IOException
-
SimpleBufferedRandomAccessInputStream
public SimpleBufferedRandomAccessInputStream(RandomAccessFile in, int bufsize) throws IOException
- Throws:
IOException
-
-
Method Detail
-
read
public final int read() throws IOException
- Specified by:
read
in classInputStream
- Throws:
IOException
-
read
public int read(byte[] b, int off, int len) throws IOException
- Overrides:
read
in classInputStream
- Throws:
IOException
-
markSupported
public boolean markSupported()
- Overrides:
markSupported
in classInputStream
-
close
public void close() throws IOException
- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceCloseable
- Overrides:
close
in classInputStream
- Throws:
IOException
-
seek
public void seek(long pos) throws IOException
- Throws:
IOException
-
getFilePointer
public long getFilePointer()
-
readInt
public final int readInt() throws IOException
- Throws:
IOException
-
readLong
public final long readLong() throws IOException
- Throws:
IOException
-
readIntArray
public int readIntArray(int[] a) throws IOException
- Throws:
IOException
-
readLongArray
public int readLongArray(long[] a) throws IOException
- Throws:
IOException
-
-