Reusable Java library of general tools with minimal external dependencies.
For questions or support, please contact us:
Email: support@aoindustries.com
Phone: 1-800-519-9541
Phone: +1-251-607-9556
Web: https://www.aoindustries.com/contact
public final class WriterFacade extends Writer
| Modifier and Type | Method and Description |
|---|---|
WriterFacade |
append(char c) |
WriterFacade |
append(CharSequence csq) |
WriterFacade |
append(CharSequence csq,
int start,
int end) |
void |
close() |
void |
flush() |
static WriterFacade |
getInstance(Writer out)
Gets an instance of the WriterFacade that wraps the given Writer.
|
void |
write(char[] cbuf) |
void |
write(char[] cbuf,
int off,
int len) |
void |
write(int c) |
void |
write(String str) |
void |
write(String str,
int off,
int len) |
public static WriterFacade getInstance(Writer out)
public void write(int c)
throws IOException
write in class WriterIOExceptionpublic void write(char[] cbuf)
throws IOException
write in class WriterIOExceptionpublic void write(char[] cbuf,
int off,
int len)
throws IOException
write in class WriterIOExceptionpublic void write(String str) throws IOException
write in class WriterIOExceptionpublic void write(String str, int off, int len) throws IOException
write in class WriterIOExceptionpublic WriterFacade append(CharSequence csq) throws IOException
append in interface Appendableappend in class WriterIOExceptionpublic WriterFacade append(CharSequence csq, int start, int end) throws IOException
append in interface Appendableappend in class WriterIOExceptionpublic WriterFacade append(char c) throws IOException
append in interface Appendableappend in class WriterIOExceptionpublic void flush()
throws IOException
flush in interface Flushableflush in class WriterIOExceptionpublic void close()
throws IOException
close in interface Closeableclose in interface AutoCloseableclose in class WriterIOExceptionCopyright © 2000–2016 AO Industries, Inc.. All rights reserved.