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.this
IOException
Appendable append(CharSequence csq) throws IOException
csq
- the character sequence to append.this
IOException
Appendable 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.this
IOException
Copyright © 2005–2014 Javolution. All rights reserved.