Package java.io
Class StringReader

Public Method markSupported

boolean markSupported()

Overrides:

_INSERT_METHOD_SIGNATURE_HERE_

Description:

This method checks if mark operation is supported.

Example

   String buffer = "Hello World";
   StringReader sr = new StringReader(buffer);

   if (sr.markSupported())
   {
      Logger.log("This stream supports the mark operation!");
      sr.mark(5);
   }

The markSupported method checks if the mark operation is supported.