MCPcopy Create free account
hub / github.com/antlr/codebuff / writeObject

Method writeObject

output/java_guava/1.4.16/TreeMultimap.java:250–256  ·  view source on GitHub ↗

@serialData key comparator, value comparator, number of distinct keys, and then for each distinct key: the key, number of values for that key, and key values

(ObjectOutputStream stream)

Source from the content-addressed store, hash-verified

248 */
249
250 @GwtIncompatible // java.io.ObjectOutputStream
251 private void writeObject(ObjectOutputStream stream) throws IOException {
252 stream.defaultWriteObject();
253 stream.writeObject(keyComparator());
254 stream.writeObject(valueComparator());
255 Serialization.writeMultimap(this, stream);
256 }
257
258 @GwtIncompatible // java.io.ObjectInputStream
259 @SuppressWarnings("unchecked") // reading data stored by writeObject

Callers

nothing calls this directly

Calls 3

keyComparatorMethod · 0.95
valueComparatorMethod · 0.95
writeMultimapMethod · 0.95

Tested by

no test coverage detected