The methods of Java.IO.Reader are listed below. For a list of all members, see the Reader Members list.
See Also: Inherited members from Java.Lang.Object
abstract | Close()Closes this reader. | |
Mark(int)Sets a mark position in this reader. | ||
MarkSupported()Indicates whether this reader supports the mark() and reset() methods. | ||
Read()Reads a single character from this reader and returns it as an integer with the two higher-order bytes set to 0. | ||
Read(Java.Nio.CharBuffer)Reads characters and puts them into the target character buffer. | ||
Read(char[])Reads characters from this reader and stores them in the character array buffer starting at offset 0. | ||
abstract | Read(char[], int, int)Reads up to count characters from this reader and stores them at offset in the character array buffer. | |
ReadAsync()Documentation for this section has not yet been entered. | ||
ReadAsync(Java.Nio.CharBuffer)Documentation for this section has not yet been entered. | ||
ReadAsync(char[])Documentation for this section has not yet been entered. | ||
ReadAsync(char[], int, int)Documentation for this section has not yet been entered. | ||
Ready()Indicates whether this reader is ready to be read without blocking. | ||
Reset()Resets this reader's position to the last mark() location. | ||
Skip(long)Skips charCount characters in this reader. | ||
SkipAsync(long)Documentation for this section has not yet been entered. |