Constructors
Name | Description |
---|---|
StringReader(String) | Create a new string reader. |
Methods
Name | Description |
---|---|
close() | Close the stream. |
mark(int) | Mark the present position in the stream. |
markSupported() | Tell whether this stream supports the mark() operation, which it does. |
read() | Read a single character. |
read(char[], int, int) | Read characters into a portion of an array. |
ready() | Tell whether this stream is ready to be read. |
reset() | Reset the stream to the most recent mark, or to the beginning of the string if it has never been marked. |
skip(long) | Skip characters. |