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)
Creates a new instance on the given Appendable.
|
static UncheckedAppendable on(Appendable appendable)
appendable - The Appendable to uncheck.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 AppendableCopyright © 2002–2023 The Apache Software Foundation. All rights reserved.