Interface PartitionObjects.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<PartitionObjects.Builder,
,PartitionObjects> SdkBuilder<PartitionObjects.Builder,
,PartitionObjects> SdkPojo
- Enclosing class:
PartitionObjects
public static interface PartitionObjects.Builder
extends SdkPojo, CopyableBuilder<PartitionObjects.Builder,PartitionObjects>
-
Method Summary
Modifier and TypeMethodDescriptionobjects
(Collection<TableObject> objects) A list of table objectsobjects
(Consumer<TableObject.Builder>... objects) A list of table objectsobjects
(TableObject... objects) A list of table objectspartitionValues
(String... partitionValues) A list of partition values.partitionValues
(Collection<String> partitionValues) A list of partition values.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Method Details
-
partitionValues
A list of partition values.
- Parameters:
partitionValues
- A list of partition values.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
partitionValues
A list of partition values.
- Parameters:
partitionValues
- A list of partition values.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
objects
A list of table objects
- Parameters:
objects
- A list of table objects- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
objects
A list of table objects
- Parameters:
objects
- A list of table objects- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
objects
A list of table objects
This is a convenience method that creates an instance of theTableObject.Builder
avoiding the need to create one manually viaTableObject.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toobjects(List<TableObject>)
.- Parameters:
objects
- a consumer that will call methods onTableObject.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-