Uses of Interface
com.google.common.graph.MutableGraph
-
Packages that use MutableGraph Package Description com.google.common.graph An API for representing graph (node and edge) data. -
-
Uses of MutableGraph in com.google.common.graph
Classes in com.google.common.graph that implement MutableGraph Modifier and Type Class Description (package private) classStandardMutableGraph<N>Standard implementation ofMutableGraphthat supports both directed and undirected graphs.Fields in com.google.common.graph declared as MutableGraph Modifier and Type Field Description private MutableGraph<N>ImmutableGraph.Builder. mutableGraphMethods in com.google.common.graph that return MutableGraph Modifier and Type Method Description <N1 extends N>
MutableGraph<N1>GraphBuilder. build()Returns an emptyMutableGraphwith the properties of thisGraphBuilder.static <N> MutableGraph<N>Graphs. copyOf(Graph<N> graph)Creates a mutable copy ofgraphwith the same nodes and edges.static <N> MutableGraph<N>Graphs. inducedSubgraph(Graph<N> graph, java.lang.Iterable<? extends N> nodes)Returns the subgraph ofgraphinduced bynodes.
-