Package | Description |
---|---|
java.io |
Input/Output support
|
Modifier and Type | Method and Description |
---|---|
CharArrayWriter |
CharArrayWriter.append(char c)
Appends the Unicode character,
c , to the output stream
underlying this writer. |
CharArrayWriter |
CharArrayWriter.append(CharSequence cs)
Appends the specified sequence of Unicode characters to the
output stream underlying this writer.
|
CharArrayWriter |
CharArrayWriter.append(CharSequence cs,
int start,
int end)
Appends the specified subsequence of Unicode characters to the
output stream underlying this writer, starting and ending at the
specified positions within the sequence.
|