Uses of Interface
org.apache.commons.io.output.UncheckedAppendable
-
Packages that use UncheckedAppendable Package Description org.apache.commons.io.output Provides implementations of output classes, such asOutputStream
andWriter
. -
-
Uses of UncheckedAppendable in org.apache.commons.io.output
Methods in org.apache.commons.io.output that return UncheckedAppendable Modifier and Type Method Description UncheckedAppendable
UncheckedAppendable. append(char c)
Appends perAppendable.append(char)
but rethrowsIOException
asUncheckedIOException
.UncheckedAppendable
UncheckedAppendable. append(java.lang.CharSequence csq)
Appends perAppendable.append(CharSequence)
but rethrowsIOException
asUncheckedIOException
.UncheckedAppendable
UncheckedAppendable. append(java.lang.CharSequence csq, int start, int end)
Appends perAppendable.append(CharSequence, int, int)
but rethrowsIOException
asUncheckedIOException
.static UncheckedAppendable
UncheckedAppendable. on(java.lang.Appendable appendable)
Constructs a new instance on the given Appendable.
-