Determines whether this stream supports reading.
public boolean canRead()
Returns true if the stream supports reading; otherwise, returns false.
IOException thrown if an I/O error occurs or if the stream does not support reading.
This method implements the IByteStream.canRead method. The default method always returns true, but a subclass can override this method to provide the appropriate functionality.
See Also read