Package java.io
A FilterInputStream contains some other input stream, which it uses as its basic source of data, possibly transforming the data along the way or providing additional functionality. The class FilterInputStream itself simply overrides all methods of InputStream with versions that pass all requests to the contained input stream. Subclasses of FilterInputStream may further override some of these methods and may also provide additional methods and fields.
Note that the constructor of this class is protected, i.e. in order to use it a subclass has to be derived.
_INSERT_CONSTRUCTOR_ENTRY_HERE_
Public Methods
Methods inherited from java.io.InputStream
Methods inherited from java.lang.Object
_INSERT_INHERITED_METHOD_ENTRY_HERE_
_INSERT_FIELDS_ENTRY_HERE_