Uses of Interface
com.google.common.graph.MutableNetwork
-
Packages that use MutableNetwork Package Description com.google.common.graph An API for representing graph (node and edge) data. -
-
Uses of MutableNetwork in com.google.common.graph
Classes in com.google.common.graph that implement MutableNetwork Modifier and Type Class Description (package private) class
StandardMutableNetwork<N,E>
Standard implementation ofMutableNetwork
that supports both directed and undirected graphs.Fields in com.google.common.graph declared as MutableNetwork Modifier and Type Field Description private MutableNetwork<N,E>
ImmutableNetwork.Builder. mutableNetwork
Methods in com.google.common.graph that return MutableNetwork Modifier and Type Method Description <N1 extends N,E1 extends E>
MutableNetwork<N1,E1>NetworkBuilder. build()
Returns an emptyMutableNetwork
with the properties of thisNetworkBuilder
.static <N,E>
MutableNetwork<N,E>Graphs. copyOf(Network<N,E> network)
Creates a mutable copy ofnetwork
with the same nodes and edges.static <N,E>
MutableNetwork<N,E>Graphs. inducedSubgraph(Network<N,E> network, java.lang.Iterable<? extends N> nodes)
Returns the subgraph ofnetwork
induced bynodes
.
-