Uses of Class
com.google.common.graph.EndpointPairIterator
-
Packages that use EndpointPairIterator Package Description com.google.common.graph An API for representing graph (node and edge) data. -
-
Uses of EndpointPairIterator in com.google.common.graph
Subclasses of EndpointPairIterator in com.google.common.graph Modifier and Type Class 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.Methods in com.google.common.graph that return EndpointPairIterator Modifier and Type Method Description (package private) static <N> EndpointPairIterator<N>
EndpointPairIterator. of(BaseGraph<N> graph)
-