Java.IO.Writer: Method Members

The methods of Java.IO.Writer are listed below. For a list of all members, see the Writer Members list.

See Also: Inherited members from Java.Lang.Object

Public Methods

Append(Java.Lang.ICharSequence) : Java.Lang.IAppendable
Appends the character sequence csq to the target.
Append(char) : Java.Lang.IAppendable
Appends the character c to the target.
Append(string) : Java.Lang.IAppendable
Documentation for this section has not yet been entered.
Append(Java.Lang.ICharSequence, int, int) : Java.Lang.IAppendable
Appends a subsequence of the character sequence csq to the target.
Append(string, int, int) : Java.Lang.IAppendable
Documentation for this section has not yet been entered.
AppendAsync(Java.Lang.ICharSequence) : System.Threading.Tasks.Task<Java.Lang.IAppendable>
Documentation for this section has not yet been entered.
AppendAsync(char) : System.Threading.Tasks.Task<Java.Lang.IAppendable>
Documentation for this section has not yet been entered.
AppendAsync(Java.Lang.ICharSequence, int, int) : System.Threading.Tasks.Task<Java.Lang.IAppendable>
Documentation for this section has not yet been entered.
abstract
Close()
Closes this writer.
abstract
Flush()
Flushes this writer.
Write(char[])
Writes the entire character buffer buf to the target.
Write(int)
Writes one character to the target.
Write(string)
Writes the characters from the specified string to the target.
abstract
Write(char[], int, int)
Writes count characters starting at offset in buf to the target.
Write(string, int, int)
Writes count characters from str starting at offset to the target.
WriteAsync(char[]) : System.Threading.Tasks.Task
Documentation for this section has not yet been entered.
WriteAsync(int) : System.Threading.Tasks.Task
Documentation for this section has not yet been entered.
WriteAsync(string) : System.Threading.Tasks.Task
Documentation for this section has not yet been entered.
WriteAsync(char[], int, int) : System.Threading.Tasks.Task
Documentation for this section has not yet been entered.
WriteAsync(string, int, int) : System.Threading.Tasks.Task
Documentation for this section has not yet been entered.