MCPcopy Create free account
hub / github.com/ReadyTalk/avian / writeObject

Method writeObject

classpath/java/util/TreeMap.java:285–292  ·  view source on GitHub ↗
(ObjectOutputStream out)

Source from the content-addressed store, hash-verified

283 public final static long serialVersionUID = 0x0cc1f63e2d256ae6l;
284
285 private void writeObject(ObjectOutputStream out) throws IOException {
286 out.defaultWriteObject();
287 out.writeInt(size());
288 for (Entry<K, V> entry : entrySet()) {
289 out.writeObject(entry.getKey());
290 out.writeObject(entry.getValue());
291 }
292 }
293
294 private void readObject(ObjectInputStream in) throws IOException {
295 in.defaultReadObject();

Callers

nothing calls this directly

Calls 7

sizeMethod · 0.95
entrySetMethod · 0.95
writeIntMethod · 0.65
writeObjectMethod · 0.65
getKeyMethod · 0.65
getValueMethod · 0.65
defaultWriteObjectMethod · 0.45

Tested by

no test coverage detected