Uses of Interface
com.google.common.graph.GraphConnections
Packages that use GraphConnections
-
Uses of GraphConnections in com.google.common.graph
Classes in com.google.common.graph that implement GraphConnectionsModifier and TypeClassDescription(package private) final class
An implementation ofGraphConnections
for directed graphs.(package private) final class
An implementation ofGraphConnections
for undirected graphs.Fields in com.google.common.graph with type parameters of type GraphConnectionsModifier and TypeFieldDescription(package private) final MapIteratorCache
<N, GraphConnections<N, V>> StandardValueGraph.nodeConnections
Methods in com.google.common.graph that return GraphConnectionsModifier and TypeMethodDescriptionprivate GraphConnections
<N, V> StandardMutableValueGraph.addNodeInternal
(N node) Addsnode
to the graph and returns the associatedGraphConnections
.private final GraphConnections
<N, V> StandardValueGraph.checkedConnections
(N node) private static <N> GraphConnections
<N, GraphConstants.Presence> ImmutableGraph.connectionsOf
(Graph<N> graph, N node) private static <N,
V> GraphConnections <N, V> ImmutableValueGraph.connectionsOf
(ValueGraph<N, V> graph, N node) private GraphConnections
<N, V> StandardMutableValueGraph.newConnections()
Methods in com.google.common.graph that return types with arguments of type GraphConnectionsModifier and TypeMethodDescriptionprivate static <N> ImmutableMap
<N, GraphConnections<N, GraphConstants.Presence>> ImmutableGraph.getNodeConnections
(Graph<N> graph) private static <N,
V> ImmutableMap <N, GraphConnections<N, V>> ImmutableValueGraph.getNodeConnections
(ValueGraph<N, V> graph) Constructor parameters in com.google.common.graph with type arguments of type GraphConnectionsModifierConstructorDescription(package private)
StandardValueGraph
(AbstractGraphBuilder<? super N> builder, Map<N, GraphConnections<N, V>> nodeConnections, long edgeCount) Constructs a graph with the properties specified inbuilder
, initialized with the given node map.