Adds edge to this graph, connecting nodes. @return true iff the graph was modified as a result of this call @throws UnsupportedOperationException if the add operation is not supported by this graph
(E edge, N... nodes)
| 65 | * @throws UnsupportedOperationException if the add operation is not supported by this graph |
| 66 | */ |
| 67 | @CanIgnoreReturnValue |
| 68 | boolean addEdge(E edge, N... nodes); |
| 69 | |
| 70 | /** |