static IndexGraphBuilder |
IndexGraphBuilder.directed() |
Create a new builder that builds directed graphs.
|
IndexGraphBuilder |
IndexGraphFactory.newBuilder() |
|
default IndexGraphBuilder |
IndexGraphFactory.newBuilderCopyOf(Graph<Integer,Integer> g) |
Create a new graph builder with the factory parameters initialized with an existing graph vertices and edges,
without copying the weights.
|
IndexGraphBuilder |
IndexGraphFactory.newBuilderCopyOf(Graph<Integer,Integer> g,
boolean copyVerticesWeights,
boolean copyEdgesWeights) |
Create a new graph builder with the factory parameters initialized with an existing graph vertices and edges,
with/without copying the weights.
|
static IndexGraphBuilder |
IndexGraphBuilder.newCopyOf(IndexGraph g) |
Create a new builder initialized with an existing graph vertices and edges, without copying the weights.
|
static IndexGraphBuilder |
IndexGraphBuilder.newCopyOf(IndexGraph g,
boolean copyVerticesWeights,
boolean copyEdgesWeights) |
Create a new builder initialized with an existing graph vertices and edges, with/without copying the weights.
|
static IndexGraphBuilder |
IndexGraphBuilder.newInstance(boolean directed) |
Create a new builder that builds un/directed graphs.
|
static IndexGraphBuilder |
IndexGraphBuilder.undirected() |
Create a new builder that builds undirected graphs.
|