Uses of Class
org.apache.commons.io.output.WriterOutputStream.Builder
-
Packages that use WriterOutputStream.Builder Package Description org.apache.commons.io.output Provides implementations of output classes, such asOutputStream
andWriter
. -
-
Uses of WriterOutputStream.Builder in org.apache.commons.io.output
Methods in org.apache.commons.io.output that return WriterOutputStream.Builder Modifier and Type Method Description static WriterOutputStream.Builder
WriterOutputStream. builder()
Constructs a newWriterOutputStream.Builder
.WriterOutputStream.Builder
WriterOutputStream.Builder. setCharset(java.lang.String charset)
WriterOutputStream.Builder
WriterOutputStream.Builder. setCharset(java.nio.charset.Charset charset)
WriterOutputStream.Builder
WriterOutputStream.Builder. setCharsetDecoder(java.nio.charset.CharsetDecoder charsetDecoder)
Sets the charset decoder.WriterOutputStream.Builder
WriterOutputStream.Builder. setWriteImmediately(boolean writeImmediately)
Sets whether the output buffer will be flushed after each write operation (true
), meaning all available data will be written to the underlyingWriter
immediately.
-