Appends the string representation of the specified Unicode code point to the end of this buffer. The code point is converted to a char[] as defined by Character#toChars(int). @param codePoint the Unicode code point to encode and append. @return this StringBuffer. @see
(int codePoint)
| 329 | * @since 1.5 |
| 330 | */ |
| 331 | public StringBuffer appendCodePoint(int codePoint) { |
| 332 | return append(Character.toChars(codePoint)); |
| 333 | } |
| 334 | |
| 335 | @Override |
| 336 | public synchronized char charAt(int index) { |