MCPcopy
hub / github.com/google/guava / toString

Method toString

guava/src/com/google/common/graph/AbstractGraph.java:54–64  ·  view source on GitHub ↗

Returns a string representation of this graph.

()

Source from the content-addressed store, hash-verified

52
53 /** Returns a string representation of this graph. */
54 @Override
55 public String toString() {
56 return "isDirected: "
57 + isDirected()
58 + ", allowsSelfLoops: "
59 + allowsSelfLoops()
60 + ", nodes: "
61 + nodes()
62 + ", edges: "
63 + edges();
64 }
65}

Callers

nothing calls this directly

Calls 4

isDirectedMethod · 0.65
allowsSelfLoopsMethod · 0.65
nodesMethod · 0.65
edgesMethod · 0.65

Tested by

no test coverage detected