Package java.io
Class CharArrayReader

Public Method markSupported

boolean markSupported()

Overrides:

_INSERT_METHOD_SIGNATURE_HERE_

Description:

This method checks whether this stream supports the mark operation or not.

Example

   char[] ch = {'H','e','l','l','o'};
   CharArrayReader car = new CharArrayReader(ch);
   if (car.markSupported())
      Logger.log("mark is supported");

The markSupproted method checks if the mark operation is supported.