Uses of Interface
com.google.common.graph.MutableValueGraph
-
Packages that use MutableValueGraph Package Description com.google.common.graph An API for representing graph (node and edge) data. -
-
Uses of MutableValueGraph in com.google.common.graph
Methods in com.google.common.graph that return MutableValueGraph Modifier and Type Method Description <N1 extends N,V1 extends V>
MutableValueGraph<N1,V1>ValueGraphBuilder. build()
Returns an emptyMutableValueGraph
with the properties of thisValueGraphBuilder
.static <N,V>
MutableValueGraph<N,V>Graphs. copyOf(ValueGraph<N,V> graph)
Creates a mutable copy ofgraph
with the same nodes, edges, and edge values.static <N,V>
MutableValueGraph<N,V>Graphs. inducedSubgraph(ValueGraph<N,V> graph, java.lang.Iterable<? extends N> nodes)
Returns the subgraph ofgraph
induced bynodes
.
-