Package org.apache.commons.io.output
Class UnsynchronizedByteArrayOutputStream.Builder
java.lang.Object
org.apache.commons.io.build.AbstractSupplier<UnsynchronizedByteArrayOutputStream,UnsynchronizedByteArrayOutputStream.Builder>
org.apache.commons.io.build.AbstractOriginSupplier<UnsynchronizedByteArrayOutputStream,UnsynchronizedByteArrayOutputStream.Builder>
org.apache.commons.io.build.AbstractStreamBuilder<UnsynchronizedByteArrayOutputStream,UnsynchronizedByteArrayOutputStream.Builder>
org.apache.commons.io.output.UnsynchronizedByteArrayOutputStream.Builder
- All Implemented Interfaces:
IOSupplier<UnsynchronizedByteArrayOutputStream>
- Enclosing class:
UnsynchronizedByteArrayOutputStream
public static class UnsynchronizedByteArrayOutputStream.Builder
extends AbstractStreamBuilder<UnsynchronizedByteArrayOutputStream,UnsynchronizedByteArrayOutputStream.Builder>
Builds a new
UnsynchronizedByteArrayOutputStream.
Using File IO:
UnsynchronizedByteArrayOutputStream s = UnsynchronizedByteArrayOutputStream.builder()
.setBufferSize(8192)
.get();
Using NIO Path:
UnsynchronizedByteArrayOutputStream s = UnsynchronizedByteArrayOutputStream.builder()
.setBufferSize(8192)
.get();
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Methods inherited from class org.apache.commons.io.build.AbstractStreamBuilder
getCharset, setBufferSize, setBufferSize, setBufferSizeChecker, setBufferSizeMax, setCharset, setCharset, setOpenOptionsMethods inherited from class org.apache.commons.io.build.AbstractOriginSupplier
setByteArray, setCharSequence, setFile, setFile, setInputStream, setOutputStream, setPath, setPath, setReader, setURI, setWriterMethods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.apache.commons.io.function.IOSupplier
asSupplier
-
Constructor Details
-
Builder
public Builder()
-
-
Method Details
-
get
Builds a newUnsynchronizedByteArrayOutputStream.This builder use the following aspects:
AbstractStreamBuilder.getBufferSize()
- Returns:
- a new instance.
- See Also:
-