net.innig.collect
Interface GraphWalker<N>


public interface GraphWalker<N>

A foolishly simple abstraction of a directed graph.

Maturity: Though small, this is a mature API.
Plans: In the future, innig-util will include more complete graph handling utilities. This interface might optionally support bi-directional traversal. See Graphs.

Version:
[Development version]
Author:
Paul Cantrell
See Also:
Graphs

Method Summary
 java.util.Collection<N> getEdgesFrom(N node)
          Returns the edges reachable from a node of the graph.
 

Method Detail

getEdgesFrom

java.util.Collection<N> getEdgesFrom(N node)
Returns the edges reachable from a node of the graph.