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 asOutputStreamandWriter. -
-
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) classUncheckedAppendableImplAnAppendableimplementation that throwsUncheckedIOExceptioninstead ofIOException.Methods in org.apache.commons.io.output that return UncheckedAppendable Modifier and Type Method Description UncheckedAppendableUncheckedAppendable. append(char c)Appends perAppendable.append(char)but rethrowsIOExceptionasUncheckedIOException.UncheckedAppendableUncheckedAppendable. append(java.lang.CharSequence csq)Appends perAppendable.append(CharSequence)but rethrowsIOExceptionasUncheckedIOException.UncheckedAppendableUncheckedAppendable. append(java.lang.CharSequence csq, int start, int end)Appends perAppendable.append(CharSequence, int, int)but rethrowsIOExceptionasUncheckedIOException.UncheckedAppendableUncheckedAppendableImpl. append(char c)UncheckedAppendableUncheckedAppendableImpl. append(java.lang.CharSequence csq)UncheckedAppendableUncheckedAppendableImpl. append(java.lang.CharSequence csq, int start, int end)static UncheckedAppendableUncheckedAppendable. on(java.lang.Appendable appendable)Constructs a new instance on the given Appendable.
-