public class RunLengthInputStream extends FilterInputStream
InputStream implementing the run length algorithm as defined in
the PDF spec.| Constructor and Description |
|---|
RunLengthInputStream(InputStream in) |
| Modifier and Type | Method and Description |
|---|---|
int |
available() |
boolean |
markSupported() |
int |
read() |
int |
read(byte[] b,
int off,
int len) |
void |
reset() |
long |
skip(long n) |
close, mark, readpublic RunLengthInputStream(InputStream in)
public int available()
throws IOException
available in class FilterInputStreamIOExceptionpublic boolean markSupported()
markSupported in class FilterInputStreampublic int read()
throws IOException
read in class FilterInputStreamIOExceptionpublic int read(byte[] b,
int off,
int len)
throws IOException
read in class FilterInputStreamIOExceptionpublic void reset()
throws IOException
reset in class FilterInputStreamIOExceptionpublic long skip(long n)
throws IOException
skip in class FilterInputStreamIOExceptionCopyright © 2013 intarsys consulting GmbH. All Rights Reserved.