Methods Summary |
---|
public java.lang.Appendable | append(char c)Appends the specified character.
|
public java.lang.Appendable | append(java.lang.CharSequence csq)Appends the character sequence {@code csq}. Implementation classes may
not append the whole sequence, for example if the target is a buffer with
limited size.
If {@code csq} is {@code null}, the characters "null" are appended.
|
public java.lang.Appendable | append(java.lang.CharSequence csq, int start, int end)Appends a subsequence of {@code csq}.
If {@code csq} is not {@code null} then calling this method is equivalent
to calling {@code append(csq.subSequence(start, end))}.
If {@code csq} is {@code null}, the characters "null" are appended.
|