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.
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.
(close this)
Description copied from class: Reader
throws: java.io.IOException - If an I/O error occurs
Description copied from class: Reader throws: java.io.IOException - If an I/O error occurs
(mark this read-ahead-limit)
Marks the present position in the stream.
read-ahead-limit - Limit on the number of characters that may be read while still preserving the mark. After reading this many characters, attempting to reset the stream may fail. - int
throws: java.io.IOException - If an I/O error occurs
Marks the present position in the stream. read-ahead-limit - Limit on the number of characters that may be read while still preserving the mark. After reading this many characters, attempting to reset the stream may fail. - `int` throws: java.io.IOException - If an I/O error occurs
(mark-supported this)
Tells whether this stream supports the mark() operation.
returns: true if and only if this stream supports the mark operation. - boolean
Tells whether this stream supports the mark() operation. returns: true if and only if this stream supports the mark operation. - `boolean`
(read this)
(read this cbuf off len)
Reads characters into a portion of an array.
cbuf - Destination buffer - char[]
off - Offset at which to start storing characters - int
len - Maximum number of characters to read - int
returns: The number of characters read, or -1 if the end of the
stream has been reached - int
throws: java.io.IOException - If an I/O error occurs
Reads characters into a portion of an array. cbuf - Destination buffer - `char[]` off - Offset at which to start storing characters - `int` len - Maximum number of characters to read - `int` returns: The number of characters read, or -1 if the end of the stream has been reached - `int` throws: java.io.IOException - If an I/O error occurs
(ready this)
Tells whether this stream is ready to be read.
returns: True if the next read() is guaranteed not to block for input,
false otherwise. Note that returning false does not guarantee that the
next read will block. - boolean
throws: java.io.IOException - If an I/O error occurs
Tells whether this stream is ready to be read. returns: True if the next read() is guaranteed not to block for input, false otherwise. Note that returning false does not guarantee that the next read will block. - `boolean` throws: java.io.IOException - If an I/O error occurs
(reset this)
Resets the stream.
throws: java.io.IOException - If an I/O error occurs
Resets the stream. throws: java.io.IOException - If an I/O error occurs
(skip this n)
Skips characters.
n - The number of characters to skip - long
returns: The number of characters actually skipped - long
throws: java.io.IOException - If an I/O error occurs
Skips characters. n - The number of characters to skip - `long` returns: The number of characters actually skipped - `long` throws: java.io.IOException - If an I/O error occurs
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close