public class InterpolationFilterReader
extends java.io.FilterReader
Constructor and Description |
---|
InterpolationFilterReader(java.io.Reader in,
java.util.Map variables) |
InterpolationFilterReader(java.io.Reader in,
java.util.Map variables,
java.lang.String beginToken,
java.lang.String endToken) |
public InterpolationFilterReader(java.io.Reader in, java.util.Map variables, java.lang.String beginToken, java.lang.String endToken)
public InterpolationFilterReader(java.io.Reader in, java.util.Map variables)
public long skip(long n) throws java.io.IOException
skip
in class java.io.FilterReader
n
- The number of characters to skipjava.lang.IllegalArgumentException
- If n
is negative.java.io.IOException
- If an I/O error occurspublic int read(char[] cbuf, int off, int len) throws java.io.IOException
read
in class java.io.FilterReader
cbuf
- Destination buffer to write characters to.
Must not be null
.off
- Offset at which to start storing characters.len
- Maximum number of characters to read.java.io.IOException
- If an I/O error occurspublic int read() throws java.io.IOException
read
in class java.io.FilterReader
java.io.IOException
- if the underlying stream throws an IOException
during reading