public class ByteBufferInputStream extends InputStream
Constructor and Description |
---|
ByteBufferInputStream(ByteBuffer bb) |
Modifier and Type | Method and Description |
---|---|
int |
available() |
void |
mark(int limit) |
boolean |
markSupported() |
int |
read() |
int |
read(byte[] b,
int off,
int len) |
void |
reset() |
long |
skip(long n) |
close, read
public ByteBufferInputStream(ByteBuffer bb)
public int read()
read
in class InputStream
public int read(byte[] b, int off, int len)
read
in class InputStream
public long skip(long n)
skip
in class InputStream
public void mark(int limit)
mark
in class InputStream
public void reset()
reset
in class InputStream
public boolean markSupported()
markSupported
in class InputStream
public int available()
available
in class InputStream