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
Classes in com.google.common.graph that implement MutableValueGraph Modifier and Type Class Description (package private) class
ConfigurableMutableValueGraph<N,V>
Configurable implementation ofMutableValueGraph
that supports both directed and undirected graphs.Fields in com.google.common.graph declared as MutableValueGraph Modifier and Type Field Description private MutableValueGraph<N,GraphConstants.Presence>
ConfigurableMutableGraph. backingValueGraph
private MutableValueGraph<N,V>
ImmutableValueGraph.Builder. mutableValueGraph
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
.
-