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)
| 476 | * if no changes may be made to the contents of this buffer. |
| 477 | */ |
| 478 | public abstract CharBuffer put(char c); |
| 479 | |
| 480 | /** |
| 481 | * Writes chars from the given char array to the current position and |