Uses of Interface
com.google.common.graph.GraphConnections
-
Packages that use GraphConnections Package Description com.google.common.graph An API for representing graph (node and edge) data. -
-
Uses of GraphConnections in com.google.common.graph
Classes in com.google.common.graph that implement GraphConnections Modifier and Type Class Description (package private) class
DirectedGraphConnections<N,V>
An implementation ofGraphConnections
for directed graphs.(package private) class
UndirectedGraphConnections<N,V>
An implementation ofGraphConnections
for undirected graphs.Fields in com.google.common.graph with type parameters of type GraphConnections Modifier and Type Field Description protected MapIteratorCache<N,GraphConnections<N,V>>
ConfigurableValueGraph. nodeConnections
Methods in com.google.common.graph that return GraphConnections Modifier and Type Method Description private GraphConnections<N,V>
ConfigurableMutableValueGraph. addNodeInternal(N node)
Addsnode
to the graph and returns the associatedGraphConnections
.protected GraphConnections<N,V>
ConfigurableValueGraph. 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>
ConfigurableMutableValueGraph. newConnections()
Methods in com.google.common.graph that return types with arguments of type GraphConnections Modifier and Type Method Description private 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 GraphConnections Constructor Description ConfigurableValueGraph(AbstractGraphBuilder<? super N> builder, java.util.Map<N,GraphConnections<N,V>> nodeConnections, long edgeCount)
Constructs a graph with the properties specified inbuilder
, initialized with the given node map.
-