Package org.apache.commons.io.build
Class AbstractOrigin.ReaderOrigin
- java.lang.Object
-
- org.apache.commons.io.build.AbstractSupplier<T,B>
-
- org.apache.commons.io.build.AbstractOrigin<java.io.Reader,AbstractOrigin.ReaderOrigin>
-
- org.apache.commons.io.build.AbstractOrigin.ReaderOrigin
-
- All Implemented Interfaces:
IOSupplier<java.io.Reader>
- Enclosing class:
- AbstractOrigin<T,B extends AbstractOrigin<T,B>>
public static class AbstractOrigin.ReaderOrigin extends AbstractOrigin<java.io.Reader,AbstractOrigin.ReaderOrigin>
AnReaderorigin.This origin cannot provide 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
Constructors Constructor Description ReaderOrigin(java.io.Reader origin)Constructs a new instance for the given origin.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]getByteArray()Gets this origin as a byte array, if possible.java.lang.CharSequencegetCharSequence(java.nio.charset.Charset charset)Gets this origin as a byte array, if possible.java.io.InputStreamgetInputStream(java.nio.file.OpenOption... options)Gets this origin as an InputStream, if possible.java.io.ReadergetReader(java.nio.charset.Charset charset)Gets a new Reader on the origin, buffered by default.-
Methods inherited from class org.apache.commons.io.build.AbstractOrigin
get, getByteArray, getFile, getOutputStream, getPath, getWriter, size, toString
-
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.apache.commons.io.function.IOSupplier
asSupplier
-
-
-
-
Method Detail
-
getByteArray
public byte[] getByteArray() throws java.io.IOExceptionDescription copied from class:AbstractOriginGets this origin as a byte array, if possible.- Overrides:
getByteArrayin classAbstractOrigin<java.io.Reader,AbstractOrigin.ReaderOrigin>- Returns:
- this origin as a byte array, if possible.
- Throws:
java.io.IOException- if an I/O error occurs.
-
getCharSequence
public java.lang.CharSequence getCharSequence(java.nio.charset.Charset charset) throws java.io.IOExceptionGets this origin as a byte array, if possible.The
charsetparameter is ignored since aReaderdoes not need aCharsetto be read.- Overrides:
getCharSequencein classAbstractOrigin<java.io.Reader,AbstractOrigin.ReaderOrigin>- Parameters:
charset- The charset to use if conversion from bytes is needed.- Returns:
- this origin as a byte array, if possible.
- Throws:
java.io.IOException- if an I/O error occurs.
-
getInputStream
public java.io.InputStream getInputStream(java.nio.file.OpenOption... options) throws java.io.IOExceptionGets this origin as an InputStream, if possible.The
optionsparameter is ignored since aReaderdoes not need anOpenOptionto be read.- Overrides:
getInputStreamin classAbstractOrigin<java.io.Reader,AbstractOrigin.ReaderOrigin>- Parameters:
options- options specifying how the file is opened- Returns:
- this origin as an InputStream, if possible.
- Throws:
java.io.IOException- if an I/O error occurs.
-
getReader
public java.io.Reader getReader(java.nio.charset.Charset charset) throws java.io.IOExceptionGets a new Reader on the origin, buffered by default.The
charsetparameter is ignored since aReaderdoes not need aCharsetto be read.- Overrides:
getReaderin classAbstractOrigin<java.io.Reader,AbstractOrigin.ReaderOrigin>- Parameters:
charset- the charset to use for decoding- Returns:
- a new Reader on the origin.
- Throws:
java.io.IOException- if an I/O error occurs opening the file.
-
-