| Package | Description |
|---|---|
| com.google.common.graph |
An API for representing graph (node and edge) data.
|
| Modifier and Type | Class and Description |
|---|---|
class |
GraphBuilder<N>
A builder for constructing instances of
MutableGraph with user-defined properties. |
class |
NetworkBuilder<N,E>
A builder for constructing instances of
MutableNetwork with user-defined properties. |
class |
ValueGraphBuilder<N,V>
A builder for constructing instances of
MutableValueGraph with user-defined properties. |
| Constructor and Description |
|---|
ConfigurableMutableGraph(AbstractGraphBuilder<? super N> builder)
Constructs a
MutableGraph with the properties specified in builder. |
ConfigurableMutableValueGraph(AbstractGraphBuilder<? super N> builder)
Constructs a mutable graph with the properties specified in
builder. |
ConfigurableValueGraph(AbstractGraphBuilder<? super N> builder)
Constructs a graph with the properties specified in
builder. |
ConfigurableValueGraph(AbstractGraphBuilder<? super N> builder,
java.util.Map<N,GraphConnections<N,V>> nodeConnections,
long edgeCount)
Constructs a graph with the properties specified in
builder, initialized with the given
node map. |