Resets this decoder. This method will reset the internal status, and then calls implReset() to reset any status related to the specific charset. @return this decoder.
()
| 703 | * @return this decoder. |
| 704 | */ |
| 705 | public final CharsetDecoder reset() { |
| 706 | status = INIT; |
| 707 | implReset(); |
| 708 | return this; |
| 709 | } |
| 710 | |
| 711 | /** |
| 712 | * Gets this decoder's <code>CodingErrorAction</code> when an unmappable |