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