java.io
abstract public class: FilterReader [javadoc |
source]
java.lang.Object
java.io.Reader
java.io.FilterReader
All Implemented Interfaces:
Closeable, Readable
Direct Known Subclasses:
PushbackReader
Abstract class for reading filtered character streams.
The abstract class
FilterReader itself
provides default methods that pass all requests to
the contained stream. Subclasses of
FilterReader
should override some of these methods and may also provide
additional methods and fields.
- author:
Mark - Reinhold
- since:
JDK1.1 -
| Field Summary |
|---|
| protected Reader | in | The underlying character-input stream. |
| Constructor: |
protected FilterReader(Reader in) {
super(in);
this.in = in;
}
Creates a new filtered reader. Parameters:
in - a Reader object providing the underlying stream.
Throws:
NullPointerException - if in is null
|
| Methods from java.lang.Object: |
|---|
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |