public static interface WorkflowGraph.Builder extends SdkPojo, CopyableBuilder<WorkflowGraph.Builder,WorkflowGraph>
| Modifier and Type | Method and Description |
|---|---|
WorkflowGraph.Builder |
edges(Collection<Edge> edges)
A list of all the directed connections between the nodes belonging to the workflow.
|
WorkflowGraph.Builder |
edges(Consumer<Edge.Builder>... edges)
A list of all the directed connections between the nodes belonging to the workflow.
|
WorkflowGraph.Builder |
edges(Edge... edges)
A list of all the directed connections between the nodes belonging to the workflow.
|
WorkflowGraph.Builder |
nodes(Collection<Node> nodes)
A list of the the Glue components belong to the workflow represented as nodes.
|
WorkflowGraph.Builder |
nodes(Consumer<Node.Builder>... nodes)
A list of the the Glue components belong to the workflow represented as nodes.
|
WorkflowGraph.Builder |
nodes(Node... nodes)
A list of the the Glue components belong to the workflow represented as nodes.
|
equalsBySdkFields, sdkFieldscopyapplyMutation, buildWorkflowGraph.Builder nodes(Collection<Node> nodes)
A list of the the Glue components belong to the workflow represented as nodes.
nodes - A list of the the Glue components belong to the workflow represented as nodes.WorkflowGraph.Builder nodes(Node... nodes)
A list of the the Glue components belong to the workflow represented as nodes.
nodes - A list of the the Glue components belong to the workflow represented as nodes.WorkflowGraph.Builder nodes(Consumer<Node.Builder>... nodes)
A list of the the Glue components belong to the workflow represented as nodes.
This is a convenience method that creates an instance of theNode.Builder avoiding the need to create one manually via
Node.builder().
When the Consumer completes, SdkBuilder.build()
is called immediately and its result is passed to #nodes(List.
nodes - a consumer that will call methods on Node.Builder#nodes(java.util.Collection) WorkflowGraph.Builder edges(Collection<Edge> edges)
A list of all the directed connections between the nodes belonging to the workflow.
edges - A list of all the directed connections between the nodes belonging to the workflow.WorkflowGraph.Builder edges(Edge... edges)
A list of all the directed connections between the nodes belonging to the workflow.
edges - A list of all the directed connections between the nodes belonging to the workflow.WorkflowGraph.Builder edges(Consumer<Edge.Builder>... edges)
A list of all the directed connections between the nodes belonging to the workflow.
This is a convenience method that creates an instance of theEdge.Builder avoiding the need to create one manually via
Edge.builder().
When the Consumer completes, SdkBuilder.build()
is called immediately and its result is passed to #edges(List.
edges - a consumer that will call methods on Edge.Builder#edges(java.util.Collection) Copyright © 2023. All rights reserved.