Package org.apache.commons.io.input
Class AutoCloseInputStream.Builder
java.lang.Object
org.apache.commons.io.build.AbstractSupplier<AutoCloseInputStream,AutoCloseInputStream.Builder>
org.apache.commons.io.build.AbstractOriginSupplier<AutoCloseInputStream,AutoCloseInputStream.Builder>
org.apache.commons.io.build.AbstractStreamBuilder<AutoCloseInputStream,AutoCloseInputStream.Builder>
org.apache.commons.io.input.AutoCloseInputStream.Builder
- All Implemented Interfaces:
IOSupplier<AutoCloseInputStream>
- Enclosing class:
AutoCloseInputStream
public static class AutoCloseInputStream.Builder
extends AbstractStreamBuilder<AutoCloseInputStream,AutoCloseInputStream.Builder>
Builds a new
AutoCloseInputStream
instance.
For example:
AutoCloseInputStream s = AutoCloseInputStream.builder()
.setPath(path)
.get();
AutoCloseInputStream s = AutoCloseInputStream.builder()
.setInputStream(inputStream)
.get();
- Since:
- 2.13.0
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Methods inherited from class org.apache.commons.io.build.AbstractStreamBuilder
getCharset, setBufferSize, setBufferSize, setBufferSizeChecker, setBufferSizeMax, setCharset, setCharset, setOpenOptions
Methods inherited from class org.apache.commons.io.build.AbstractOriginSupplier
setByteArray, setCharSequence, setFile, setFile, setInputStream, setOutputStream, setPath, setPath, setReader, setURI, setWriter
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.apache.commons.io.function.IOSupplier
asSupplier
-
Constructor Details
-
Builder
public Builder()
-
-
Method Details
-
get
Builds a newAutoCloseInputStream
.You must set input that supports
AbstractStreamBuilder.getInputStream()
, otherwise, this method throws an exception.This builder use the following aspects:
AbstractStreamBuilder.getInputStream()
- Returns:
- a new instance.
- Throws:
IllegalStateException
- if theorigin
isnull
.UnsupportedOperationException
- if the origin cannot be converted to anInputStream
.IOException
- if an I/O error occurs.- See Also:
-