Returns all nodes in this graph adjacent to node which can be reached by traversing node's incoming edges against the direction (if any) of the edge. @throws IllegalArgumentException if node is not an element of this graph
(Object node)
| 213 | * @throws IllegalArgumentException if {@code node} is not an element of this graph |
| 214 | */ |
| 215 | Set<N> predecessors(Object node); |
| 216 | |
| 217 | /** |
| 218 | * Returns all nodes in this graph adjacent to {@code node} which can be reached by traversing |
no outgoing calls
no test coverage detected