@CleanupObligation public abstract class DecoratingInputStream extends InputStream
FilterInputStream
in the JSE, but optimized for performance and without
multithreading support.DecoratingOutputStream| Modifier and Type | Field and Description |
|---|---|
protected InputStream |
delegate
The nullable decorated input stream.
|
| Modifier | Constructor and Description |
|---|---|
protected |
DecoratingInputStream(InputStream delegate)
Constructs a new decorating input stream.
|
| 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 protected InputStream delegate
@CreatesObligation protected DecoratingInputStream(@Nullable@WillCloseWhenClosed InputStream delegate)
delegate - the nullable input stream to decorate.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 © 2005-2013 Schlichtherle IT Services. All Rights Reserved.