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) classA base implementation ofNetworkConnectionsfor directed networks.(package private) classA base implementation ofNetworkConnectionsfor undirected networks.(package private) final classAn implementation ofNetworkConnectionsfor directed networks with parallel edges.(package private) final classAn implementation ofNetworkConnectionsfor directed networks.(package private) final classAn implementation ofNetworkConnectionsfor undirected networks with parallel edges.(package private) final classAn implementation ofNetworkConnectionsfor 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.nodeConnectionsMethods in com.google.common.graph that return NetworkConnectionsModifier and TypeMethodDescriptionprivate NetworkConnections<N,E> StandardMutableNetwork.addNodeInternal(N node) Addsnodeto 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.