Liking cljdoc? Tell your friends :D
Clojure only.

jdk.io.FilterWriter

Abstract class for writing filtered character streams. The abstract class FilterWriter itself provides default methods that pass all requests to the contained stream. Subclasses of FilterWriter should override some of these methods and may also provide additional methods and fields.

Abstract class for writing filtered character streams.
The abstract class FilterWriter itself
provides default methods that pass all requests to the
contained stream. Subclasses of FilterWriter
should override some of these methods and may also
provide additional methods and fields.
raw docstring

closeclj

(close this)

Description copied from class: Writer

throws: java.io.IOException - If an I/O error occurs

Description copied from class: Writer

throws: java.io.IOException - If an I/O error occurs
raw docstring

flushclj

(flush this)

Flushes the stream.

throws: java.io.IOException - If an I/O error occurs

Flushes the stream.

throws: java.io.IOException - If an I/O error occurs
raw docstring

writeclj

(write this c)
(write this cbuf off len)

Writes a portion of an array of characters.

cbuf - Buffer of characters to be written - char[] off - Offset from which to start reading characters - int len - Number of characters to be written - int

throws: java.io.IOException - If an I/O error occurs

Writes a portion of an array of characters.

cbuf - Buffer of characters to be written - `char[]`
off - Offset from which to start reading characters - `int`
len - Number of characters to be written - `int`

throws: java.io.IOException - If an I/O error occurs
raw docstring

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

× close