Package org.eclipse.rdf4j.common.io
Class UncloseableInputStream
- java.lang.Object
-
- java.io.InputStream
-
- java.io.FilterInputStream
-
- org.eclipse.rdf4j.common.io.UncloseableInputStream
-
- All Implemented Interfaces:
java.io.Closeable
,java.lang.AutoCloseable
public class UncloseableInputStream extends java.io.FilterInputStream
-
-
Constructor Summary
Constructors Constructor Description UncloseableInputStream(java.io.InputStream parent)
Constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
close()
void
doClose()
Invoke close on FilterInputStream parent class.-
Methods inherited from class java.io.FilterInputStream
available, mark, markSupported, read, read, read, reset, skip
-
-
-
-
Method Detail
-
close
public void close() throws java.io.IOException
- Specified by:
close
in interfacejava.lang.AutoCloseable
- Specified by:
close
in interfacejava.io.Closeable
- Overrides:
close
in classjava.io.FilterInputStream
- Throws:
java.io.IOException
-
doClose
public void doClose() throws java.io.IOException
Invoke close on FilterInputStream parent class.- Throws:
java.io.IOException
-
-