Package | Description |
---|---|
com.google.common.graph |
An API for representing graph (node and edge) data.
|
Modifier and Type | Class and Description |
---|---|
private static class |
EndpointPairIterator.Directed<N>
If the graph is directed, each ordered [source, target] pair will be visited once if there is
an edge connecting them.
|
private static class |
EndpointPairIterator.Undirected<N>
If the graph is undirected, each unordered [node, otherNode] pair (except self-loops) will be
visited twice if there is an edge connecting them.
|
Modifier and Type | Method and Description |
---|---|
(package private) static <N> EndpointPairIterator<N> |
EndpointPairIterator.of(BaseGraph<N> graph) |