Flushes this encoder. The default implementation does nothing and always returns CoderResult.UNDERFLOW ; this method can be overridden if needed. @param out the output buffer. @return CoderResult.UNDERFLOW or CoderResult.OVERFLOW .
(ByteBuffer out)
| 586 | * <code>CoderResult.OVERFLOW</code>. |
| 587 | */ |
| 588 | protected CoderResult implFlush(ByteBuffer out) { |
| 589 | return CoderResult.UNDERFLOW; |
| 590 | } |
| 591 | |
| 592 | /** |
| 593 | * Notifies that this encoder's <code>CodingErrorAction</code> specified |