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.
(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
(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
(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
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close