CollectionGraphFactoryExtension<V, E> extension
- on
-
- GraphFactory<
V, E>
- GraphFactory<
Methods
-
fromPath(
Iterable< V> chain, {E? value}) → Graph<V, E> -
Available on GraphFactory<
Creates a Graph from a Iterable of chains.V, E> , provided by the CollectionGraphFactoryExtension extension -
fromPaths(
Iterable< Iterable< chains, {E? value}) → Graph<V> >V, E> -
Available on GraphFactory<
Creates a Graph from a Iterable of chains.V, E> , provided by the CollectionGraphFactoryExtension extension -
fromPredecessorFunction(
Iterable< V> vertices, Iterable<V> predecessors(V vertex)) → Graph<V, E> -
Available on GraphFactory<
Creates a Graph from startV, E> , provided by the CollectionGraphFactoryExtension extensionvertices
and a functionpredecessors
returning its preceding vertices (incoming adjacency). -
fromPredecessors(
Map< V, Iterable< mapping) → Graph<V> ?>V, E> -
Available on GraphFactory<
Creates a Graph from a Map of vertices pointing to an Iterable of preceding vertices (incoming adjacency).V, E> , provided by the CollectionGraphFactoryExtension extension -
fromSuccessorFunction(
Iterable< V> vertices, Iterable<V> successors(V vertex)) → Graph<V, E> -
Available on GraphFactory<
Creates a Graph from startV, E> , provided by the CollectionGraphFactoryExtension extensionvertices
and a functionsuccessors
returning its succeeding vertices (outgoing adjacency). -
fromSuccessors(
Map< V, Iterable< mapping) → Graph<V> ?>V, E> -
Available on GraphFactory<
Creates a Graph from a Map of vertices pointing to an Iterable of succeeding vertices (outgoing adjacency).V, E> , provided by the CollectionGraphFactoryExtension extension