Changed Methods |
Iterable<N> breadthFirst(N )
|
Changed from abstract to non-abstract. Change from non-final to final.
|
Returns an unmodifiable {@code Iterable} over the nodes reachable from {@code startNode}, in
the order of a breadth-first traversal. |
Iterable<N> breadthFirst(Iterable<? extends N> )
|
Changed from abstract to non-abstract. Change from non-final to final.
|
Returns an unmodifiable {@code Iterable} over the nodes reachable from any of the {@code
startNodes}, in the order of a breadth-first traversal. |
Iterable<N> depthFirstPostOrder(N )
|
Changed from abstract to non-abstract. Change from non-final to final.
|
Returns an unmodifiable {@code Iterable} over the nodes reachable from {@code startNode}, in
the order of a depth-first post-order traversal. |
Iterable<N> depthFirstPostOrder(Iterable<? extends N> )
|
Changed from abstract to non-abstract. Change from non-final to final.
|
Returns an unmodifiable {@code Iterable} over the nodes reachable from any of the {@code
startNodes}, in the order of a depth-first post-order traversal. |
Iterable<N> depthFirstPreOrder(N )
|
Changed from abstract to non-abstract. Change from non-final to final.
|
Returns an unmodifiable {@code Iterable} over the nodes reachable from {@code startNode}, in
the order of a depth-first pre-order traversal. |
Iterable<N> depthFirstPreOrder(Iterable<? extends N> )
|
Changed from abstract to non-abstract. Change from non-final to final.
|
Returns an unmodifiable {@code Iterable} over the nodes reachable from any of the {@code
startNodes}, in the order of a depth-first pre-order traversal. |