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) classAbstractDirectedNetworkConnections<N,E>A base implementation ofNetworkConnectionsfor directed networks.(package private) classAbstractUndirectedNetworkConnections<N,E>A base implementation ofNetworkConnectionsfor undirected networks.(package private) classDirectedMultiNetworkConnections<N,E>An implementation ofNetworkConnectionsfor directed networks with parallel edges.(package private) classDirectedNetworkConnections<N,E>An implementation ofNetworkConnectionsfor directed networks.(package private) classUndirectedMultiNetworkConnections<N,E>An implementation ofNetworkConnectionsfor undirected networks with parallel edges.(package private) classUndirectedNetworkConnections<N,E>An implementation ofNetworkConnectionsfor 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. nodeConnectionsMethods in com.google.common.graph that return NetworkConnections Modifier and Type Method Description private NetworkConnections<N,E>ConfigurableMutableNetwork. addNodeInternal(N node)Addsnodeto the graph and returns the associatedNetworkConnections.protected NetworkConnections<N,E>ConfigurableNetwork. checkedConnections(N 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.
-