public interface IInputStream
extends java.lang.AutoCloseable
InputStream
.Modifier and Type | Method and Description |
---|---|
int |
available() |
void |
close() |
void |
mark(int readlimit) |
boolean |
markSupported() |
int |
read() |
int |
read(byte[] b) |
int |
read(byte[] b,
int off,
int len) |
void |
reset() |
long |
skip(long n) |
int read() throws IOExceptionUnchecked
IOExceptionUnchecked
InputStream.read()
int read(byte[] b) throws IOExceptionUnchecked
IOExceptionUnchecked
InputStream.read(byte[])
int read(byte[] b, int off, int len) throws IOExceptionUnchecked
IOExceptionUnchecked
InputStream.read(byte[], int, int)
long skip(long n) throws IOExceptionUnchecked
IOExceptionUnchecked
InputStream.skip(long)
int available() throws IOExceptionUnchecked
IOExceptionUnchecked
InputStream.available()
void close() throws IOExceptionUnchecked
close
in interface java.lang.AutoCloseable
IOExceptionUnchecked
InputStream.close()
void mark(int readlimit)
InputStream.mark(int)
void reset() throws IOExceptionUnchecked
IOExceptionUnchecked
InputStream.reset()
boolean markSupported()
InputStream.markSupported()