Writes the given char to the current position and increases the position by 1. @param c the char to write. @return this buffer. @exception BufferOverflowException if position is equal or greater than limit. @exception ReadOnlyBufferException if no changes ma
(char c)
| 706 | * if no changes may be made to the contents of this buffer. |
| 707 | */ |
| 708 | public CharBuffer append(char c) { |
| 709 | return put(c); |
| 710 | } |
| 711 | |
| 712 | /** |
| 713 | * Writes all chars of the given character sequence {@code csq} to the |
nothing calls this directly
no test coverage detected