MCPcopy Index your code
hub / github.com/ShiftLeftSecurity/overflowdb / addEdge

Method addEdge

core/src/main/java/overflowdb/Node.java:16–16  ·  view source on GitHub ↗

Add an outgoing edge to the node with provided label and edge properties as key/value pairs. These key/values must be provided in an even number where the odd numbered arguments are String property keys and the even numbered arguments are the related property values.

(String label, Node inNode, Object... keyValues)

Source from the content-addressed store, hash-verified

14 * property keys and the even numbered arguments are the related property values.
15 */
16 @Deprecated public final Edge addEdge(String label, Node inNode, Object... keyValues){return addEdgeImpl(label, inNode, keyValues);}
17 protected abstract Edge addEdgeImpl(String label, Node inNode, Object... keyValues);
18 final Edge addEdgeInternal(String label, Node inNode, Object... keyValues){return addEdgeImpl(label, inNode, keyValues);}
19

Calls 1

addEdgeImplMethod · 0.95