final class UncheckedAppendableImpl extends java.lang.Object implements UncheckedAppendable
Appendable
implementation that throws UncheckedIOException
instead of IOException
.Appendable
,
IOException
,
UncheckedIOException
Modifier and Type | Field and Description |
---|---|
private java.lang.Appendable |
appendable |
Constructor and Description |
---|
UncheckedAppendableImpl(java.lang.Appendable appendable) |
Modifier and Type | Method and Description |
---|---|
UncheckedAppendable |
append(char c)
Appends per
Appendable.append(char) but rethrows IOException as UncheckedIOException . |
UncheckedAppendable |
append(java.lang.CharSequence csq)
Appends per
Appendable.append(CharSequence) but rethrows IOException as UncheckedIOException . |
UncheckedAppendable |
append(java.lang.CharSequence csq,
int start,
int end)
Appends per
Appendable.append(CharSequence, int, int) but rethrows IOException as
UncheckedIOException . |
java.lang.String |
toString() |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
on
public UncheckedAppendable append(char c)
UncheckedAppendable
Appendable.append(char)
but rethrows IOException
as UncheckedIOException
.append
in interface java.lang.Appendable
append
in interface UncheckedAppendable
public UncheckedAppendable append(java.lang.CharSequence csq)
UncheckedAppendable
Appendable.append(CharSequence)
but rethrows IOException
as UncheckedIOException
.append
in interface java.lang.Appendable
append
in interface UncheckedAppendable
public UncheckedAppendable append(java.lang.CharSequence csq, int start, int end)
UncheckedAppendable
Appendable.append(CharSequence, int, int)
but rethrows IOException
as
UncheckedIOException
.append
in interface java.lang.Appendable
append
in interface UncheckedAppendable
public java.lang.String toString()
toString
in class java.lang.Object