Package org.apache.commons.io.output
Interface UncheckedAppendable
- All Superinterfaces:
Appendable
- Since:
- 2.12.0
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionappend
(char c) append
(CharSequence csq) append
(CharSequence csq, int start, int end) Appends perAppendable.append(CharSequence, int, int)
but rethrowsIOException
asUncheckedIOException
.static UncheckedAppendable
on
(Appendable appendable) Constructs a new instance on the given Appendable.
-
Method Details
-
on
Constructs a new instance on the given Appendable.- Parameters:
appendable
- The Appendable to uncheck.- Returns:
- a new instance.
-
append
- Specified by:
append
in interfaceAppendable
-
append
- Specified by:
append
in interfaceAppendable
-
append
Appends perAppendable.append(CharSequence, int, int)
but rethrowsIOException
asUncheckedIOException
.- Specified by:
append
in interfaceAppendable
-