FilterInputStream.markSupported
Class Overview | Class Members |
This Package |
All Packages
public boolean markSupported()
Returns
true if this stream type supports the
mark and reset method;
false otherwise.
Description
Tests if this input stream supports the mark
and reset methods. The markSupported
method of FilterInputStream calls the
markSupported method of its underlying input stream
and returns whatever value that method returns.
Overrides
markSupported in class InputStream
See Also
in, mark, reset