Uses of Class
com.kuka.graph.GraphBuilder

Packages that use GraphBuilder
com.kuka.graph This package contains the main interfaces and utility classes for working with graphs. 
 

Uses of GraphBuilder in com.kuka.graph
 

Methods in com.kuka.graph that return GraphBuilder
 GraphBuilder<N,E,G> GraphBuilder.addEdge(E edge)
          Adds the specified edge to the graph if it is not already present.
 GraphBuilder<N,E,G> GraphBuilder.addEdge(N source, N target)
          Adds an edge from the specified source to the specified target node to the graph if it is not already present.
 GraphBuilder<N,E,G> GraphBuilder.addGraph(G graph)
          Adds all nodes and edges contained in the specified graph if they are not already present.
 GraphBuilder<N,E,G> GraphBuilder.addNode(N node)
          Adds the specified node to the graph if it is not already present.
static
<N,E,G extends Graph<N,E>>
GraphBuilder<N,E,G>
GraphBuilder.create(G graph)
          Creates a new graph builder for the given graph.
 



Copyright © 2019. All rights reserved.