Interface: java.lang.Readable
- public interface Readable
A Readable is a source of characters. Characters from
a Readable are made available to callers of the read
method via a CharBuffer.
Methods
-
readtop
public int read(CharBuffer cb) throws IOExceptionAttempts to read characters into the specified character buffer. The buffer is used as a repository of characters as-is: the only changes made are the results of a put operation. No flipping or rewinding of the buffer is performed.
