public interface Appendable
This interface is replaced by java.lang.Appendable
in JDK 1.5+.
| Modifier and Type | Method and Description |
|---|---|
Appendable |
append(char c)
Appends the specified character.
|
Appendable |
append(CharSequence csq)
Appends the specified character sequence.
|
Appendable |
append(CharSequence csq,
int start,
int end)
Appends a subsequence of the specified character sequence.
|
Appendable append(char c) throws IOException
c - the character to append.thisIOExceptionAppendable append(CharSequence csq) throws IOException
csq - the character sequence to append.thisIOExceptionAppendable append(CharSequence csq, int start, int end) throws IOException
csq - the character sequence to append.start - the index of the first character to append.end - the index after the last character to append.thisIOExceptionCopyright © 2005–2024 Javolution. All rights reserved.