Uses of Interface
com.jgalgo.Graph.Builder
-
-
Uses of Graph.Builder in com.jgalgo
Methods in com.jgalgo that return Graph.Builder Modifier and Type Method Description Graph.Builder
Graph.Builder. addHint(Graph.Builder.Hint hint)
Add a hint to this builder.Graph.Builder
Graph.Builder. expectedEdgesNum(int expectedEdgesNum)
Set the expected number of edges that will exist in the graph.Graph.Builder
Graph.Builder. expectedVerticesNum(int expectedVerticesNum)
Set the expected number of vertices that will exist in the graph.static Graph.Builder
Graph. newBuilderDirected()
Create a directed graph builder.static Graph.Builder
Graph. newBuilderUndirected()
Create an undirected graph builder.Graph.Builder
Graph.Builder. removeHint(Graph.Builder.Hint hint)
Remove a hint from this builder.Graph.Builder
Graph.Builder. setDirected(boolean directed)
Determine if graphs built by this builder should be directed or not.
-