Package org.apache.xmlbeans.impl.common
Class PushedInputStream
java.lang.Object
java.io.InputStream
org.apache.xmlbeans.impl.common.PushedInputStream
- All Implemented Interfaces:
Closeable,AutoCloseable
- Direct Known Subclasses:
ReaderInputStream
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionintfinal OutputStreamReturns the linked output stream.voidmark(int readlimit) booleanintread()intread(byte[] b, int off, int len) Read characters into a portion of an array, reading from the underlying stream at most once if necessary.voidreset()longskip(long n) Methods inherited from class java.io.InputStream
close, nullInputStream, read, readAllBytes, readNBytes, readNBytes, skipNBytes, transferTo
-
Constructor Details
-
PushedInputStream
public PushedInputStream() -
PushedInputStream
public PushedInputStream(int size)
-
-
Method Details
-
getOutputStream
Returns the linked output stream. This is the output stream that must be written to whenever the fill method is called. -
read
- Specified by:
readin classInputStream- Throws:
IOException
-
read
Read characters into a portion of an array, reading from the underlying stream at most once if necessary.- Overrides:
readin classInputStream- Throws:
IOException
-
skip
- Overrides:
skipin classInputStream- Throws:
IOException
-
available
public int available()- Overrides:
availablein classInputStream
-
mark
public void mark(int readlimit) - Overrides:
markin classInputStream
-
reset
- Overrides:
resetin classInputStream- Throws:
IOException
-
markSupported
public boolean markSupported()- Overrides:
markSupportedin classInputStream
-