Interface IFlowGraphEdgeDataBuilder
-
public interface IFlowGraphEdgeDataBuilderBuilder for theedge dataof a flow graph, used whenbuilding a flow graphvia theconnectmethods fromICreateFlowGraphContext.- Since:
- 8.0.0
- Author:
- XIMA MEDIA GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IFlowGraphEdgeDataBuilderaddOwner(NodeKey owner)IFlowGraphEdgeDataBuilderaddType(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()
-
-