Liking cljdoc? Tell your friends :D

jdk.io.FilterReader

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.
raw docstring

closeclj

(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
raw docstring

markclj

(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
raw docstring

mark-supportedclj

(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`
raw docstring

readclj

(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
raw docstring

readyclj

(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
raw docstring

resetclj

(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
raw docstring

skipclj

(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
raw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close