Resets this encoder. This method will reset the internal status and then calla implReset() to reset any status related to the specific charset. @return this encoder.
()
| 780 | * @return this encoder. |
| 781 | */ |
| 782 | public final CharsetEncoder reset() { |
| 783 | status = INIT; |
| 784 | implReset(); |
| 785 | return this; |
| 786 | } |
| 787 | |
| 788 | /** |
| 789 | * Gets this encoder's <code>CodingErrorAction</code> when unmappable |
no test coverage detected