Encodes characters into bytes. This method is called by #encode(CharBuffer, ByteBuffer, boolean) encode. This method will implement the essential encoding operation, and it won't stop encoding until either all the input characters are read, the output buffer is filled, or some exception
(CharBuffer in, ByteBuffer out)
| 532 | * @return a <code>CoderResult</code> instance indicating the result. |
| 533 | */ |
| 534 | protected abstract CoderResult encodeLoop(CharBuffer in, ByteBuffer out); |
| 535 | |
| 536 | /** |
| 537 | * Flushes this encoder. |