public interface UncheckedAppendable extends Appendable
Appendable,
IOException,
UncheckedIOException| Modifier and Type | Method and Description |
|---|---|
UncheckedAppendable |
append(char c)
|
UncheckedAppendable |
append(CharSequence csq)
|
UncheckedAppendable |
append(CharSequence csq,
int start,
int end)
Appends per
Appendable.append(CharSequence, int, int) but rethrows IOException as
UncheckedIOException. |
static UncheckedAppendable |
on(Appendable appendable)
Constructs a new instance on the given Appendable.
|
UncheckedAppendable append(char c)
append in interface AppendableUncheckedAppendable append(CharSequence csq)
append in interface AppendableUncheckedAppendable append(CharSequence csq, int start, int end)
Appendable.append(CharSequence, int, int) but rethrows IOException as
UncheckedIOException.append in interface Appendablestatic UncheckedAppendable on(Appendable appendable)
appendable - The Appendable to uncheck.