public static interface ApplyMapping.Builder extends SdkPojo, CopyableBuilder<ApplyMapping.Builder,ApplyMapping>
Modifier and Type | Method and Description |
---|---|
ApplyMapping.Builder |
inputs(Collection<String> inputs)
The data inputs identified by their node names.
|
ApplyMapping.Builder |
inputs(String... inputs)
The data inputs identified by their node names.
|
ApplyMapping.Builder |
mapping(Collection<Mapping> mapping)
Specifies the mapping of data property keys in the data source to data property keys in the data target.
|
ApplyMapping.Builder |
mapping(Consumer<Mapping.Builder>... mapping)
Specifies the mapping of data property keys in the data source to data property keys in the data target.
|
ApplyMapping.Builder |
mapping(Mapping... mapping)
Specifies the mapping of data property keys in the data source to data property keys in the data target.
|
ApplyMapping.Builder |
name(String name)
The name of the transform node.
|
equalsBySdkFields, sdkFields
copy
applyMutation, build
ApplyMapping.Builder name(String name)
The name of the transform node.
name
- The name of the transform node.ApplyMapping.Builder inputs(Collection<String> inputs)
The data inputs identified by their node names.
inputs
- The data inputs identified by their node names.ApplyMapping.Builder inputs(String... inputs)
The data inputs identified by their node names.
inputs
- The data inputs identified by their node names.ApplyMapping.Builder mapping(Collection<Mapping> mapping)
Specifies the mapping of data property keys in the data source to data property keys in the data target.
mapping
- Specifies the mapping of data property keys in the data source to data property keys in the data
target.ApplyMapping.Builder mapping(Mapping... mapping)
Specifies the mapping of data property keys in the data source to data property keys in the data target.
mapping
- Specifies the mapping of data property keys in the data source to data property keys in the data
target.ApplyMapping.Builder mapping(Consumer<Mapping.Builder>... mapping)
Specifies the mapping of data property keys in the data source to data property keys in the data target.
This is a convenience method that creates an instance of theMapping.Builder
avoiding the need to create one manually
via Mapping.builder()
.
When the Consumer
completes,
SdkBuilder.build()
is called immediately and its
result is passed to #mapping(List
.
mapping
- a consumer that will call methods on
Mapping.Builder
#mapping(java.util.Collection)
Copyright © 2022. All rights reserved.