Home | History | Annotate | Download | only in io

Lines Matching defs:StringWriter

25  * be queried using the {@link #StringWriter(int)} or {@link #toString()}
30 public class StringWriter extends Writer {
35 * Constructs a new {@code StringWriter} which has a {@link StringBuffer}
40 public StringWriter() {
46 * Constructs a new {@code StringWriter} which has a {@link StringBuffer}
54 public StringWriter(int initialSize) {
64 * the other methods in {@code StringWriter} do not throw an {@code IOException} if
179 public StringWriter append(char c) {
187 * StringWriter.write(csq.toString())}. If {@code csq} is {@code null}, then
195 public StringWriter append(CharSequence csq) {
206 * StringWriter.writer(csq.subsequence(start, end).toString())}. If {@code
225 public StringWriter append(CharSequence csq, int start, int end) {