Given the position index, write the original string, before being encoded, to the OutputStream. @param out the output stream to which to write the data @param position the position where the key was originally added @return the number of byte written to the stream @throws IOException if an I/O erro
(OutputStream out, int position)
| 73 | * @throws IOException if an I/O error occurs |
| 74 | */ |
| 75 | int writeTo(OutputStream out, int position) throws IOException; |
| 76 | |
| 77 | /** |
| 78 | * Add a new key to the dictionary. |
no outgoing calls