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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PartitionObjects.Builderobjects(Collection<TableObject> objects)A list of table objectsPartitionObjects.Builderobjects(Consumer<TableObject.Builder>... objects)A list of table objectsPartitionObjects.Builderobjects(TableObject... objects)A list of table objectsPartitionObjects.BuilderpartitionValues(String... partitionValues)A list of partition values.PartitionObjects.BuilderpartitionValues(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 Detail
-
partitionValues
PartitionObjects.Builder partitionValues(Collection<String> 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
PartitionObjects.Builder partitionValues(String... 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
PartitionObjects.Builder objects(Collection<TableObject> 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
PartitionObjects.Builder objects(TableObject... 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
PartitionObjects.Builder objects(Consumer<TableObject.Builder>... objects)
A list of table objects
This is a convenience method that creates an instance of theTableObject.Builderavoiding the need to create one manually viaTableObject.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#objects(List.) - 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:
#objects(java.util.Collection)
-
-