Package opennlp.tools.util.model
Class UncloseableInputStream
- java.lang.Object
-
- java.io.InputStream
-
- java.io.FilterInputStream
-
- opennlp.tools.util.model.UncloseableInputStream
-
- All Implemented Interfaces:
Closeable
,AutoCloseable
public class UncloseableInputStream extends FilterInputStream
AnInputStream
which cannot be closed.
-
-
Constructor Summary
Constructors Constructor Description UncloseableInputStream(InputStream in)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
close()
This method does not has any effect theInputStream
cannot be closed.-
Methods inherited from class java.io.FilterInputStream
available, mark, markSupported, read, read, read, reset, skip
-
Methods inherited from class java.io.InputStream
nullInputStream, readAllBytes, readNBytes, readNBytes, transferTo
-
-
-
-
Constructor Detail
-
UncloseableInputStream
public UncloseableInputStream(InputStream in)
-
-
Method Detail
-
close
public void close() throws IOException
This method does not has any effect theInputStream
cannot be closed.- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceCloseable
- Overrides:
close
in classFilterInputStream
- Throws:
IOException
-
-