Package org.apache.commons.io.build
Class AbstractOrigin.OutputStreamOrigin
java.lang.Object
org.apache.commons.io.build.AbstractSupplier<T,B>
org.apache.commons.io.build.AbstractOrigin<OutputStream,AbstractOrigin.OutputStreamOrigin>
org.apache.commons.io.build.AbstractOrigin.OutputStreamOrigin
- All Implemented Interfaces:
IOSupplier<OutputStream>
- Enclosing class:
- AbstractOrigin<T,
B extends AbstractOrigin<T, B>>
public static class AbstractOrigin.OutputStreamOrigin
extends AbstractOrigin<OutputStream,AbstractOrigin.OutputStreamOrigin>
An
OutputStream
origin.
This origin cannot provide some of the other aspects.
-
Nested Class Summary
Nested classes/interfaces inherited from class org.apache.commons.io.build.AbstractOrigin
AbstractOrigin.ByteArrayOrigin, AbstractOrigin.CharSequenceOrigin, AbstractOrigin.FileOrigin, AbstractOrigin.InputStreamOrigin, AbstractOrigin.OutputStreamOrigin, AbstractOrigin.PathOrigin, AbstractOrigin.ReaderOrigin, AbstractOrigin.URIOrigin, AbstractOrigin.WriterOrigin
-
Constructor Summary
ConstructorsConstructorDescriptionOutputStreamOrigin
(OutputStream origin) Constructs a new instance for the given origin. -
Method Summary
Modifier and TypeMethodDescriptiongetOutputStream
(OpenOption... options) Gets this origin as an OutputStream, if possible.getWriter
(Charset charset, OpenOption... options) Gets a new Writer on the origin, buffered by default.Methods inherited from class org.apache.commons.io.build.AbstractOrigin
get, getByteArray, getByteArray, getCharSequence, getFile, getInputStream, getPath, getReader, size, toString
Methods inherited from class org.apache.commons.io.build.AbstractSupplier
asThis
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.apache.commons.io.function.IOSupplier
asSupplier
-
Constructor Details
-
OutputStreamOrigin
Constructs a new instance for the given origin.- Parameters:
origin
- The origin.
-
-
Method Details
-
getOutputStream
Description copied from class:AbstractOrigin
Gets this origin as an OutputStream, if possible.- Overrides:
getOutputStream
in classAbstractOrigin<OutputStream,
AbstractOrigin.OutputStreamOrigin> - Parameters:
options
- options specifying how the file is opened- Returns:
- this origin as an OutputStream, if possible.
-
getWriter
Description copied from class:AbstractOrigin
Gets a new Writer on the origin, buffered by default.- Overrides:
getWriter
in classAbstractOrigin<OutputStream,
AbstractOrigin.OutputStreamOrigin> - Parameters:
charset
- the charset to use for encodingoptions
- options specifying how the file is opened- Returns:
- a new Writer on the origin.
- Throws:
IOException
- if an I/O error occurs opening or creating the file.
-