FileDocCategorySizeDatePackage
Readable.javaAPI DocAndroid 1.5 API1562Wed May 06 22:41:04 BST 2009java.lang

Readable

public interface Readable
Represents a sequence of characters that can be incrementally read (copied) into a {@link CharBuffer}.
since
Android 1.0

Fields Summary
Constructors Summary
Methods Summary
public intread(java.nio.CharBuffer cb)
Reads characters into the specified {@code CharBuffer}. The maximum number of characters read is {@code CharBuffer.remaining()}.

param
cb the buffer to be filled with characters read.
return
the number of characters actually read, or -1 if this {@code Readable} reaches its end
throws
IOException if an I/O error occurs.
since
Android 1.0