Package org.gnome.gio
Class FilterOutputStream.Builder<B extends FilterOutputStream.Builder<B>>
java.lang.Object
org.javagi.gobject.Builder<B>
org.gnome.gobject.GObject.Builder<B>
org.gnome.gio.OutputStream.Builder<B>
org.gnome.gio.FilterOutputStream.Builder<B>
- Type Parameters:
B- the type of the Builder that is returned
- All Implemented Interfaces:
BuilderInterface
- Direct Known Subclasses:
BufferedOutputStream.Builder,ConverterOutputStream.Builder,DataOutputStream.Builder
- Enclosing class:
FilterOutputStream
public static class FilterOutputStream.Builder<B extends FilterOutputStream.Builder<B>>
extends OutputStream.Builder<B>
Inner class implementing a builder pattern to construct a GObject with
properties.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbuild()Finish building theFilterOutputStreamobject.setBaseStream(OutputStream baseStream) The underlying base stream on which the I/O ops will be done.setCloseBaseStream(boolean closeBaseStream) Whether the base stream should be closed when the filter stream is closed.Methods inherited from class org.gnome.gobject.GObject.Builder
onNotifyMethods inherited from class org.javagi.gobject.Builder
addBuilderProperty, connect, connect, connectSignals, getArena, getNames, getValues
-
Constructor Details
-
Builder
protected Builder()Default constructor for aBuilderobject.
-
-
Method Details
-
build
Finish building theFilterOutputStreamobject. 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 toFilterOutputStream.- Overrides:
buildin classOutputStream.Builder<B extends FilterOutputStream.Builder<B>>- Returns:
- a new instance of
FilterOutputStreamwith the properties that were set in the Builder object.
-
setBaseStream
The underlying base stream on which the I/O ops will be done.- Parameters:
baseStream- the value for thebase-streamproperty- Returns:
- the
Builderinstance is returned, to allow method chaining
-
setCloseBaseStream
Whether the base stream should be closed when the filter stream is closed.- Parameters:
closeBaseStream- the value for theclose-base-streamproperty- Returns:
- the
Builderinstance is returned, to allow method chaining
-