Uses of Class
com.google.common.graph.AbstractGraphBuilder
-
Packages that use AbstractGraphBuilder Package Description com.google.common.graph An API for representing graph (node and edge) data. -
-
Uses of AbstractGraphBuilder in com.google.common.graph
Subclasses of AbstractGraphBuilder in com.google.common.graph Modifier and Type Class Description class
GraphBuilder<N>
A builder for constructing instances ofMutableGraph
with user-defined properties.class
NetworkBuilder<N,E>
A builder for constructing instances ofMutableNetwork
with user-defined properties.class
ValueGraphBuilder<N,V>
A builder for constructing instances ofMutableValueGraph
with user-defined properties.Constructors in com.google.common.graph with parameters of type AbstractGraphBuilder Constructor Description ConfigurableMutableGraph(AbstractGraphBuilder<? super N> builder)
Constructs aMutableGraph
with the properties specified inbuilder
.ConfigurableMutableValueGraph(AbstractGraphBuilder<? super N> builder)
Constructs a mutable graph with the properties specified inbuilder
.ConfigurableValueGraph(AbstractGraphBuilder<? super N> builder)
Constructs a graph with the properties specified inbuilder
.ConfigurableValueGraph(AbstractGraphBuilder<? super N> builder, java.util.Map<N,GraphConnections<N,V>> nodeConnections, long edgeCount)
Constructs a graph with the properties specified inbuilder
, initialized with the given node map.
-