GraphFactory |
GraphFactory.addHint(GraphFactory.Hint hint) |
Add a hint to this factory.
|
GraphFactory |
GraphFactory.allowParallelEdges(boolean parallelEdges) |
Determine if graphs built by this factory should be support parallel edges.
|
GraphFactory |
GraphFactory.allowSelfEdges(boolean selfEdges) |
Determine if graphs built by this factory should be support self edges.
|
GraphFactory |
GraphFactory.expectedEdgesNum(int expectedEdgesNum) |
Set the expected number of edges that will exist in the graph.
|
GraphFactory |
GraphFactory.expectedVerticesNum(int expectedVerticesNum) |
Set the expected number of vertices that will exist in the graph.
|
static GraphFactory |
GraphFactory.newDirected() |
Create a directed graph factory.
|
static GraphFactory |
GraphFactory.newFrom(Graph g) |
Create a new graph factory based on a given implementation.
|
static GraphFactory |
GraphFactory.newUndirected() |
Create an undirected graph factory.
|
GraphFactory |
GraphFactory.removeHint(GraphFactory.Hint hint) |
Remove a hint from this factory.
|
GraphFactory |
GraphFactory.setDirected(boolean directed) |
Determine if graphs built by this factory should be directed or not.
|