Uses of Interface
science.aist.gtf.graph.builder.EdgeWithBuilder
-
Packages that use EdgeWithBuilder Package Description science.aist.gtf.graph.builder -
-
Uses of EdgeWithBuilder in science.aist.gtf.graph.builder
Methods in science.aist.gtf.graph.builder that return EdgeWithBuilder Modifier and Type Method Description EdgeWithBuilder<V,E>
EdgeDataBuilder. dataWith(E value)
Add the given value to the edge (which can be retrieved usingEdge.getElement()
and returns anEdgeWithBuilder
that allows to add a callback method, that is called with the created edge.EdgeWithBuilder<V,E>
EdgeBuilder. toWith(V value)
Creates an edge to the vertex that decorates value and returns anEdgeWithBuilder
that allows to add a callback method, that is called with the created edge.EdgeWithBuilder<V,E>
EdgeBuilder. toWithByKey(Object key)
Creates an edge to the vertex that is identified by the key and returns anEdgeWithBuilder
that allows to add a callback method, that is called with the created edge.
-