Class java.io.StringReader (1.1)
public class StringReader extends Reader {
// Public Constructor
public StringReader(String s);
// Public Instance Methods
public void close( ); // Defines Reader.close( )
public void mark(int readAheadLimit) throws IOException; // Overrides Reader.mark( )
public boolean markSupported( ); // Overrides Reader.markSupported( )
public int read( ) throws IOException; // Overrides Reader.read( )
public int read(char[ ] cbuf, int off, int len) throws IOException; // Defines Reader.read( )
public boolean ready( ); // Overrides Reader.ready( )
public void reset( ) throws IOException; // Overrides Reader.reset( )
public long skip(long ns) throws IOException; // Overrides Reader.skip( )
}