Uses of Interface
com.google.common.graph.NetworkConnections
Packages that use NetworkConnections
-
Uses of NetworkConnections in com.google.common.graph
Classes in com.google.common.graph that implement NetworkConnectionsModifier and TypeClassDescription(package private) class
A base implementation ofNetworkConnections
for directed networks.(package private) class
A base implementation ofNetworkConnections
for undirected networks.(package private) final class
An implementation ofNetworkConnections
for directed networks with parallel edges.(package private) final class
An implementation ofNetworkConnections
for directed networks.(package private) final class
An implementation ofNetworkConnections
for undirected networks with parallel edges.(package private) final class
An implementation ofNetworkConnections
for undirected networks.Fields in com.google.common.graph with type parameters of type NetworkConnectionsModifier and TypeFieldDescription(package private) final MapIteratorCache
<N, NetworkConnections<N, E>> StandardNetwork.nodeConnections
Methods in com.google.common.graph that return NetworkConnectionsModifier and TypeMethodDescriptionprivate NetworkConnections
<N, E> StandardMutableNetwork.addNodeInternal
(N node) Addsnode
to the graph and returns the associatedNetworkConnections
.(package private) final NetworkConnections
<N, E> StandardNetwork.checkedConnections
(N node) private static <N,
E> NetworkConnections <N, E> ImmutableNetwork.connectionsOf
(Network<N, E> network, N node) private NetworkConnections
<N, E> StandardMutableNetwork.newConnections()
Methods in com.google.common.graph that return types with arguments of type NetworkConnectionsModifier and TypeMethodDescriptionprivate static <N,
E> Map <N, NetworkConnections<N, E>> ImmutableNetwork.getNodeConnections
(Network<N, E> network) Constructor parameters in com.google.common.graph with type arguments of type NetworkConnectionsModifierConstructorDescription(package private)
StandardNetwork
(NetworkBuilder<? super N, ? super E> builder, Map<N, NetworkConnections<N, E>> nodeConnections, Map<E, N> edgeToReferenceNode) Constructs a graph with the properties specified inbuilder
, initialized with the given node and edge maps.