Decodes bytes into characters. This method is called by the #decode(ByteBuffer, CharBuffer, boolean) decode method. This method will implement the essential decoding operation, and it won't stop decoding until either all the input bytes are read, the output buffer is filled, or some exce
(ByteBuffer in, CharBuffer out)
| 423 | * @return a <code>CoderResult</code> instance indicating the result. |
| 424 | */ |
| 425 | protected abstract CoderResult decodeLoop(ByteBuffer in, CharBuffer out); |
| 426 | |
| 427 | /** |
| 428 | * Gets the charset detected by this decoder; this method is optional. |