|
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface Appendable
Appendable is an interface for classes that provide a means to append characters.
+ @since 1.5
| Method Summary | |
|---|---|
Appendable |
append(char c)
append appends a single character to this. |
Appendable |
append(CharSequence s)
append appends the characters from the given sequence to this. |
Appendable |
append(CharSequence s,
int start,
int end)
append appends a subrange of the characters from the given squence to this. |
| Method Detail |
|---|
Appendable append(CharSequence s)
throws IOException
s - the character sequence, may be null to append the
sequence "null".
IOException - is an I/O error occured.
Appendable append(CharSequence s,
int start,
int end)
throws IOException
s - the character sequence, may be null to append the
sequence "null".start - the start position.end - the end position.
IndexOutOfBoundsException - if start<0 || end<0 ||
endIOException - is an I/O error occured.
Appendable append(char c)
throws IOException
c - the character to append.
IOException - is an I/O error occured.
|
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||