Reads the data structure from the specified input. @param in input stream @throws IOException I/O exception
(final DataInput in)
| 66 | * @throws IOException I/O exception |
| 67 | */ |
| 68 | public void read(final DataInput in) throws IOException { |
| 69 | keys = in.readTokens(); |
| 70 | next = in.readNums(); |
| 71 | buckets = in.readNums(); |
| 72 | size = in.readNum(); |
| 73 | } |
| 74 | |
| 75 | /** |
| 76 | * Writes the data structure to the specified output. |
no test coverage detected