Flushes this decoder. 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 .
(CharBuffer out)
| 504 | * <code>CoderResult.OVERFLOW</code>. |
| 505 | */ |
| 506 | protected CoderResult implFlush(CharBuffer out) { |
| 507 | return CoderResult.UNDERFLOW; |
| 508 | } |
| 509 | |
| 510 | /** |
| 511 | * Notifies that this decoder's <code>CodingErrorAction</code> specified |