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
Classes in org.apache.commons.io.output that implement UncheckedAppendable Modifier and Type Class Description (package private) class
UncheckedAppendableImpl
AnAppendable
implementation that throwsUncheckedIOException
instead ofIOException
.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
.UncheckedAppendable
UncheckedAppendableImpl. append(char c)
UncheckedAppendable
UncheckedAppendableImpl. append(java.lang.CharSequence csq)
UncheckedAppendable
UncheckedAppendableImpl. append(java.lang.CharSequence csq, int start, int end)
static UncheckedAppendable
UncheckedAppendable. on(java.lang.Appendable appendable)
Creates a new instance on the given Appendable.
-