Uses of Interface
com.google.common.graph.NetworkConnections
-
Packages that use NetworkConnections Package Description com.google.common.graph An API for representing graph (node and edge) data. -
-
Uses of NetworkConnections in com.google.common.graph
Classes in com.google.common.graph that implement NetworkConnections Modifier and Type Class Description (package private) class
AbstractDirectedNetworkConnections<N,E>
A base implementation ofNetworkConnections
for directed networks.(package private) class
AbstractUndirectedNetworkConnections<N,E>
A base implementation ofNetworkConnections
for undirected networks.(package private) class
DirectedMultiNetworkConnections<N,E>
An implementation ofNetworkConnections
for directed networks with parallel edges.(package private) class
DirectedNetworkConnections<N,E>
An implementation ofNetworkConnections
for directed networks.(package private) class
UndirectedMultiNetworkConnections<N,E>
An implementation ofNetworkConnections
for undirected networks with parallel edges.(package private) class
UndirectedNetworkConnections<N,E>
An implementation ofNetworkConnections
for undirected networks.Fields in com.google.common.graph with type parameters of type NetworkConnections Modifier and Type Field Description protected MapIteratorCache<N,NetworkConnections<N,E>>
ConfigurableNetwork. nodeConnections
Methods in com.google.common.graph that return NetworkConnections Modifier and Type Method Description private NetworkConnections<N,E>
ConfigurableMutableNetwork. addNodeInternal(N node)
Addsnode
to the graph and returns the associatedNetworkConnections
.protected NetworkConnections<N,E>
ConfigurableNetwork. checkedConnections(java.lang.Object node)
private static <N,E>
NetworkConnections<N,E>ImmutableNetwork. connectionsOf(Network<N,E> network, N node)
private NetworkConnections<N,E>
ConfigurableMutableNetwork. newConnections()
Methods in com.google.common.graph that return types with arguments of type NetworkConnections Modifier and Type Method Description private static <N,E>
java.util.Map<N,NetworkConnections<N,E>>ImmutableNetwork. getNodeConnections(Network<N,E> network)
Constructor parameters in com.google.common.graph with type arguments of type NetworkConnections Constructor Description ConfigurableNetwork(NetworkBuilder<? super N,? super E> builder, java.util.Map<N,NetworkConnections<N,E>> nodeConnections, java.util.Map<E,N> edgeToReferenceNode)
Constructs a graph with the properties specified inbuilder
, initialized with the given node and edge maps.
-