| public interface java.lang Appendable
|
Java SE 6 |
java.util.Formatter.
The characters to be appended should be valid Unicode characters as described in Unicode Character Representation. Note that supplementary characters may be composed of multiple 16-bit char values.
Appendables are not necessarily safe for multithreaded access. Thread safety is the responsibility of classes that extend and implement this interface.
Since this interface may be implemented by existing classes with different styles of error handling there is no guarantee that errors will be propagated to the invoker.
| version | 1.4, 11/17/05 |
| since | 1.5 |
| Methods | |||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| public Appendable | append(CharSequence csq) throws IOException Details
Appends the specified character sequence to this Appendable.
Depending on which class implements the character sequence
csq, the entire sequence may not be appended. For
instance, if csq is a
| ||||||||||||
| public Appendable | append(CharSequence csq, int start, int end) throws IOException Details
Appends a subsequence of the specified character sequence to this
Appendable.
An invocation of this method of the form out.append(csq, start, end) when csq is not null, behaves in exactly the same way as the invocation
out.append(csq.subSequence(start, end))
| ||||||||||||
| public Appendable | append(char c) throws IOException Details
Appends the specified character to this Appendable.
| ||||||||||||
| About DocWeb · Bundles · Export · Export All | Top 10 · Statistics · Login |
| About Sun · Contact · Privacy · Terms of Use · Trademarks | Java SE 6 · Copyright © 1994-2009 Sun Microsystems, Inc.All rights reserved. Use is subject to license terms |
![]() |
![]() |
|