public abstract class DecoratingInputStream extends InputStream
FilterInputStream.DecoratingOutputStream| Modifier and Type | Field and Description |
|---|---|
protected InputStream |
in
The nullable decorated input stream.
|
| Modifier | Constructor and Description |
|---|---|
protected |
DecoratingInputStream() |
protected |
DecoratingInputStream(InputStream in) |
| 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) |
String |
toString()
Returns a string representation of this object for debugging and logging
purposes.
|
@Nullable @WillCloseWhenClosed protected InputStream in
protected DecoratingInputStream()
protected DecoratingInputStream(@WillCloseWhenClosed InputStream in)
public int available()
throws IOException
available in class InputStreamIOException@DischargesObligation
public void close()
throws IOException
close in interface Closeableclose in interface AutoCloseableclose in class InputStreamIOExceptionpublic void mark(int readlimit)
mark in class InputStreampublic boolean markSupported()
markSupported in class InputStreampublic int read()
throws IOException
read in class InputStreamIOExceptionpublic final int read(byte[] b)
throws IOException
read in class InputStreamIOExceptionpublic int read(byte[] b,
int off,
int len)
throws IOException
read in class InputStreamIOExceptionpublic void reset()
throws IOException
reset in class InputStreamIOExceptionpublic long skip(long n)
throws IOException
skip in class InputStreamIOExceptionCopyright © 2012–2014 Schlichtherle IT Services. All rights reserved.