Interface IFlowGraphEdgeDataBuilder
-
public interface IFlowGraphEdgeDataBuilder
Builder for theedge data
of a flow graph, used whenbuilding a flow graph
via theconnect
methods fromICreateFlowGraphContext
.- Since:
- 8.0.0
- Author:
- XIMA MEDIA GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IFlowGraphEdgeDataBuilder
addOwner(NodeKey owner)
IFlowGraphEdgeDataBuilder
addType(long type)
-
-
-
Method Detail
-
addOwner
IFlowGraphEdgeDataBuilder addOwner(NodeKey owner)
- Parameters:
owner
- Key of a node to add as the owner of the edge.- Returns:
- This builder instance for chaining method calls.
- See Also:
IFlowGraphEdgeData.getOwners()
-
addType
IFlowGraphEdgeDataBuilder addType(long type)
- Parameters:
type
- One or more types for the edge. Use the constants defined inFlowGraphConnectionType
. For multiple types, combine the types with a bitwise OR, e.g.NORMAL
|THROWING
.- Returns:
- This builder instance for chaining method calls.
- See Also:
IFlowGraphEdgeData.getType()
-
-