Fields
| Name | Description |
|---|---|
| in | The underlying character-input stream, or null if the stream has been closed |
Constructors
| Name | Description |
|---|---|
| FilterReader(Reader) | Create a new filtered reader. |
Methods
| Name | Description |
|---|---|
| close() | Close the stream. |
| mark(int) | Mark the present position in the stream. |
| markSupported() | Tell whether this stream supports the mark() operation. |
| read() | Read a single character. |
| read(char[], int, int) | Read characters into a portion of an array. |
| ready() | Tell whether this stream is ready to be read. |
| reset() | Reset the stream. |
| skip(long) | Skip characters. |