public static interface Join.Builder extends SdkPojo, CopyableBuilder<Join.Builder,Join>
| Modifier and Type | Method and Description |
|---|---|
Join.Builder |
columns(Collection<JoinColumn> columns)
A list of the two columns to be joined.
|
Join.Builder |
columns(Consumer<JoinColumn.Builder>... columns)
A list of the two columns to be joined.
|
Join.Builder |
columns(JoinColumn... columns)
A list of the two columns to be joined.
|
Join.Builder |
inputs(Collection<String> inputs)
The data inputs identified by their node names.
|
Join.Builder |
inputs(String... inputs)
The data inputs identified by their node names.
|
Join.Builder |
joinType(JoinType joinType)
Specifies the type of join to be performed on the datasets.
|
Join.Builder |
joinType(String joinType)
Specifies the type of join to be performed on the datasets.
|
Join.Builder |
name(String name)
The name of the transform node.
|
equalsBySdkFields, sdkFieldscopyapplyMutation, buildJoin.Builder name(String name)
The name of the transform node.
name - The name of the transform node.Join.Builder inputs(Collection<String> inputs)
The data inputs identified by their node names.
inputs - The data inputs identified by their node names.Join.Builder inputs(String... inputs)
The data inputs identified by their node names.
inputs - The data inputs identified by their node names.Join.Builder joinType(String joinType)
Specifies the type of join to be performed on the datasets.
Join.Builder joinType(JoinType joinType)
Specifies the type of join to be performed on the datasets.
Join.Builder columns(Collection<JoinColumn> columns)
A list of the two columns to be joined.
columns - A list of the two columns to be joined.Join.Builder columns(JoinColumn... columns)
A list of the two columns to be joined.
columns - A list of the two columns to be joined.Join.Builder columns(Consumer<JoinColumn.Builder>... columns)
A list of the two columns to be joined.
This is a convenience method that creates an instance of theJoinColumn.Builder avoiding the need to create one
manually via JoinColumn.builder().
When the Consumer completes,
SdkBuilder.build() is called immediately and its
result is passed to #columns(List.
columns - a consumer that will call methods on
JoinColumn.Builder#columns(java.util.Collection) Copyright © 2023. All rights reserved.