public abstract class FilterAppendable extends Object implements Appendable
Appendable which appends to a delegate appendable. This is very much in analogy with the FilterWriter.
append(CharSequence) and append(CharSequence, int, int) call append(char),
so extending classes must override at least append(char).
| Modifier and Type | Field and Description |
|---|---|
protected Appendable |
delegate |
| Constructor and Description |
|---|
FilterAppendable(Appendable delegate) |
| Modifier and Type | Method and Description |
|---|---|
Appendable |
append(char c) |
Appendable |
append(CharSequence csq) |
Appendable |
append(CharSequence csq,
int start,
int end) |
protected final Appendable delegate
public FilterAppendable(Appendable delegate)
public Appendable append(CharSequence csq) throws IOException
append in interface AppendableIOExceptionpublic Appendable append(CharSequence csq, int start, int end) throws IOException
append in interface AppendableIOExceptionpublic Appendable append(char c) throws IOException
append in interface AppendableIOExceptionCopyright © 2018 Arno Unkrig. All rights reserved.