V
- the graph vertex typeE
- the graph edge typeT
- type for returning implementation-specific mappings from String roles to graph
elementsWeightedGraph
is deprecated.@Deprecated public abstract class WeightedGraphGeneratorAdapter<V,E,T> extends Object implements GraphGenerator<V,E,T>
Modifier and Type | Field and Description |
---|---|
protected double[][] |
weights
Deprecated.
|
Constructor and Description |
---|
WeightedGraphGeneratorAdapter()
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
void |
generateGraph(Graph<V,E> target,
VertexFactory<V> vertexFactory,
Map<String,T> resultMap)
Deprecated.
Generate a graph structure.
|
abstract void |
generateGraph(WeightedGraph<V,E> target,
VertexFactory<V> vertexFactory,
Map<String,T> resultMap)
Deprecated.
Not needed since
WeightedGraph is deprecated. |
WeightedGraphGeneratorAdapter<V,E,T> |
weights(double[][] weights)
Deprecated.
Set the weights of the generator.
|
@Deprecated public abstract void generateGraph(WeightedGraph<V,E> target, VertexFactory<V> vertexFactory, Map<String,T> resultMap)
WeightedGraph
is deprecated.target
- receives the generated edges and vertices; if this is non-empty on entry, the
result will be a disconnected graph since generated elements will not be connected to
existing elementsvertexFactory
- called to produce new verticesresultMap
- if non-null, receives implementation-specific mappings from String roles to
graph elements (or collections of graph elements)public WeightedGraphGeneratorAdapter<V,E,T> weights(double[][] weights)
weights
- the weightspublic void generateGraph(Graph<V,E> target, VertexFactory<V> vertexFactory, Map<String,T> resultMap)
generateGraph
in interface GraphGenerator<V,E,T>
target
- receives the generated edges and vertices; if this is non-empty on entry, the
result will be a disconnected graph since generated elements will not be connected to
existing elementsvertexFactory
- called to produce new verticesresultMap
- if non-null, receives implementation-specific mappings from String roles to
graph elements (or collections of graph elements)Copyright © 2017. All rights reserved.