Writes the data structure to the specified output. @param out output stream @throws IOException I/O exception
(final DataOutput out)
| 78 | * @throws IOException I/O exception |
| 79 | */ |
| 80 | public void write(final DataOutput out) throws IOException { |
| 81 | out.writeTokens(keys); |
| 82 | out.writeNums(next); |
| 83 | out.writeNums(buckets); |
| 84 | out.writeNum(size); |
| 85 | } |
| 86 | |
| 87 | /** |
| 88 | * Stores the specified key if it has not been stored before. |
no test coverage detected