|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjava.io.InputStream
java.io.FilterInputStream
org.pdfbox.io.ASCII85InputStream
This class represents an ASCII85 stream.
Field Summary |
Fields inherited from class java.io.FilterInputStream |
in |
Constructor Summary | |
ASCII85InputStream(InputStream is)
Constructor. |
Method Summary | |
int |
available()
Unsupported. |
void |
close()
This will close the underlying stream and release any resources. |
void |
mark(int readlimit)
Unsupported. |
boolean |
markSupported()
non supported interface methods. |
int |
read()
This will read the next byte from the stream. |
int |
read(byte[] data,
int offset,
int len)
This will read a chunk of data. |
void |
reset()
Unsupported. |
long |
skip(long nValue)
Unsupported. |
Methods inherited from class java.io.FilterInputStream |
read |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public ASCII85InputStream(InputStream is)
is
- The input stream to actually read from.Method Detail |
public final int read() throws IOException
IOException
- If there is an error reading from the wrapped stream.public final int read(byte[] data, int offset, int len) throws IOException
data
- The buffer to write data to.offset
- The offset into the data stream.len
- The number of byte to attempt to read.
IOException
- If there is an error reading data from the underlying stream.public void close() throws IOException
IOException
- If there is an error closing the underlying stream.public boolean markSupported()
public long skip(long nValue)
nValue
- ignored.
public int available()
public void mark(int readlimit)
readlimit
- ignored.public void reset() throws IOException
IOException
- telling that this is an unsupported action.
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |