Suspends encoding of the stream. May be helpful if you need to embed a piece of base64-encoded data in a stream. @throws java.io.IOException if there's an error flushing @since 1.5.1
()
| 2029 | * @since 1.5.1 |
| 2030 | */ |
| 2031 | public void suspendEncoding() throws java.io.IOException { |
| 2032 | flushBase64(); |
| 2033 | this.suspendEncoding = true; |
| 2034 | } // end suspendEncoding |
| 2035 | |
| 2036 | |
| 2037 | /** |
nothing calls this directly
no test coverage detected