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