Returns a string representation of this graph.
()
| 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 | } |
nothing calls this directly
no test coverage detected