Package org.apache.commons.io.input
Class UncheckedFilterInputStream
java.lang.Object
java.io.InputStream
java.io.FilterInputStream
org.apache.commons.io.input.UncheckedFilterInputStream
- All Implemented Interfaces:
- Closeable,- AutoCloseable
A 
BufferedReader that throws UncheckedIOException instead of IOException.
 
 To build an instance, use UncheckedFilterInputStream.Builder.
 
- Since:
- 2.12.0
- See Also:
- 
Nested Class SummaryNested Classes
- 
Field SummaryFields inherited from class java.io.FilterInputStreamin
- 
Method SummaryModifier and TypeMethodDescriptionintCalls this method's super and rethrowIOExceptionasUncheckedIOException.builder()Constructs a newUncheckedFilterInputStream.Builder.voidclose()Calls this method's super and rethrowIOExceptionasUncheckedIOException.intread()Calls this method's super and rethrowIOExceptionasUncheckedIOException.intread(byte[] b) Calls this method's super and rethrowIOExceptionasUncheckedIOException.intread(byte[] b, int off, int len) Calls this method's super and rethrowIOExceptionasUncheckedIOException.voidreset()Calls this method's super and rethrowIOExceptionasUncheckedIOException.longskip(long n) Calls this method's super and rethrowIOExceptionasUncheckedIOException.Methods inherited from class java.io.FilterInputStreammark, markSupported
- 
Method Details- 
builderConstructs a newUncheckedFilterInputStream.Builder.- Returns:
- a new UncheckedFilterInputStream.Builder.
 
- 
availableCalls this method's super and rethrowIOExceptionasUncheckedIOException.- Overrides:
- availablein class- FilterInputStream
- Throws:
- UncheckedIOException
 
- 
closeCalls this method's super and rethrowIOExceptionasUncheckedIOException.- Specified by:
- closein interface- AutoCloseable
- Specified by:
- closein interface- Closeable
- Overrides:
- closein class- FilterInputStream
- Throws:
- UncheckedIOException
 
- 
readCalls this method's super and rethrowIOExceptionasUncheckedIOException.- Overrides:
- readin class- FilterInputStream
- Throws:
- UncheckedIOException
 
- 
readCalls this method's super and rethrowIOExceptionasUncheckedIOException.- Overrides:
- readin class- FilterInputStream
- Throws:
- UncheckedIOException
 
- 
readCalls this method's super and rethrowIOExceptionasUncheckedIOException.- Overrides:
- readin class- FilterInputStream
- Throws:
- UncheckedIOException
 
- 
resetCalls this method's super and rethrowIOExceptionasUncheckedIOException.- Overrides:
- resetin class- FilterInputStream
- Throws:
- UncheckedIOException
 
- 
skipCalls this method's super and rethrowIOExceptionasUncheckedIOException.- Overrides:
- skipin class- FilterInputStream
- Throws:
- UncheckedIOException
 
 
-