public class UnsyncTeeWriter extends Writer
| Constructor and Description |
|---|
UnsyncTeeWriter(Writer writer1,
Writer writer2) |
| Modifier and Type | Method and Description |
|---|---|
Writer |
append(char c) |
Writer |
append(CharSequence charSequence) |
Writer |
append(CharSequence charSequence,
int start,
int end) |
void |
close() |
void |
flush() |
void |
write(char[] chars) |
void |
write(char[] chars,
int offset,
int length) |
void |
write(int c) |
void |
write(String string) |
void |
write(String string,
int offset,
int length) |
public Writer append(char c) throws IOException
append in interface Appendableappend in class WriterIOExceptionpublic Writer append(CharSequence charSequence) throws IOException
append in interface Appendableappend in class WriterIOExceptionpublic Writer append(CharSequence charSequence, int start, int end) throws IOException
append in interface Appendableappend in class WriterIOExceptionpublic void close()
throws IOException
close in interface Closeableclose in interface AutoCloseableclose in class WriterIOExceptionpublic void flush()
throws IOException
flush in interface Flushableflush in class WriterIOExceptionpublic void write(char[] chars)
throws IOException
write in class WriterIOExceptionpublic void write(char[] chars,
int offset,
int length)
throws IOException
write in class WriterIOExceptionpublic void write(int c)
throws IOException
write in class WriterIOExceptionpublic void write(String string) throws IOException
write in class WriterIOExceptionpublic void write(String string, int offset, int length) throws IOException
write in class WriterIOException