Adds node to this graph (optional operation). Nodes must be unique , just as Map keys must be; they must also be non-null. @return true iff the graph was modified as a result of this call @throws UnsupportedOperationException if the add operation is not supported b
(N node)
| 39 | * @throws UnsupportedOperationException if the add operation is not supported by this graph |
| 40 | */ |
| 41 | @CanIgnoreReturnValue |
| 42 | boolean addNode(N node); |
| 43 | |
| 44 | /** |
no outgoing calls
no test coverage detected