Package | Description |
---|---|
org.apache.commons.io.output |
Provides implementations of output classes, such as
OutputStream and
Writer . |
Modifier and Type | Class and Description |
---|---|
(package private) class |
UncheckedAppendableImpl
An
Appendable implementation that throws UncheckedIOException instead of IOException . |
Modifier and Type | Method and Description |
---|---|
UncheckedAppendable |
UncheckedAppendable.append(char c)
Appends per
Appendable.append(char) but rethrows IOException as UncheckedIOException . |
UncheckedAppendable |
UncheckedAppendableImpl.append(char c) |
UncheckedAppendable |
UncheckedAppendable.append(java.lang.CharSequence csq)
Appends per
Appendable.append(CharSequence) but rethrows IOException as UncheckedIOException . |
UncheckedAppendable |
UncheckedAppendableImpl.append(java.lang.CharSequence csq) |
UncheckedAppendable |
UncheckedAppendable.append(java.lang.CharSequence csq,
int start,
int end)
Appends per
Appendable.append(CharSequence, int, int) but rethrows IOException as
UncheckedIOException . |
UncheckedAppendable |
UncheckedAppendableImpl.append(java.lang.CharSequence csq,
int start,
int end) |
static UncheckedAppendable |
UncheckedAppendable.on(java.lang.Appendable appendable)
Constructs a new instance on the given Appendable.
|