Package org.gnome.gio
Class BufferedOutputStream.Builder<B extends BufferedOutputStream.Builder<B>>
java.lang.Object
io.github.jwharm.javagi.gobject.Builder<B>
org.gnome.gobject.GObject.Builder<B>
org.gnome.gio.OutputStream.Builder<B>
org.gnome.gio.FilterOutputStream.Builder<B>
org.gnome.gio.BufferedOutputStream.Builder<B>
- Type Parameters:
B
- the type of the Builder that is returned
- All Implemented Interfaces:
BuilderInterface
- Enclosing class:
BufferedOutputStream
public static class BufferedOutputStream.Builder<B extends BufferedOutputStream.Builder<B>>
extends FilterOutputStream.Builder<B>
Inner class implementing a builder pattern to construct a GObject with
properties.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionbuild()
Finish building theBufferedOutputStream
object.setAutoGrow
(boolean autoGrow) Whether the buffer should automatically grow.setBufferSize
(int bufferSize) The size of the backend buffer, in bytes.Methods inherited from class org.gnome.gio.FilterOutputStream.Builder
setBaseStream, setCloseBaseStream
Methods inherited from class org.gnome.gobject.GObject.Builder
onNotify
Methods inherited from class io.github.jwharm.javagi.gobject.Builder
addBuilderProperty, connect, connect, connectSignals, getArena, getNames, getValues
-
Constructor Details
-
Builder
protected Builder()Default constructor for aBuilder
object.
-
-
Method Details
-
build
Finish building theBufferedOutputStream
object. This will callGObject.withProperties(org.gnome.glib.Type, java.lang.String[], org.gnome.gobject.Value[])
to create a new GObject instance, which is then cast toBufferedOutputStream
.- Overrides:
build
in classFilterOutputStream.Builder<B extends BufferedOutputStream.Builder<B>>
- Returns:
- a new instance of
BufferedOutputStream
with the properties that were set in the Builder object.
-
setAutoGrow
Whether the buffer should automatically grow.- Parameters:
autoGrow
- the value for theauto-grow
property- Returns:
- the
Builder
instance is returned, to allow method chaining
-
setBufferSize
The size of the backend buffer, in bytes.- Parameters:
bufferSize
- the value for thebuffer-size
property- Returns:
- the
Builder
instance is returned, to allow method chaining
-