Package java.io
Class CharArrayReader
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.