Interface PivotTableFieldOptions.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<PivotTableFieldOptions.Builder,PivotTableFieldOptions>
,SdkBuilder<PivotTableFieldOptions.Builder,PivotTableFieldOptions>
,SdkPojo
- Enclosing class:
- PivotTableFieldOptions
public static interface PivotTableFieldOptions.Builder extends SdkPojo, CopyableBuilder<PivotTableFieldOptions.Builder,PivotTableFieldOptions>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PivotTableFieldOptions.Builder
collapseStateOptions(Collection<PivotTableFieldCollapseStateOption> collapseStateOptions)
The collapse state options for the pivot table field options.PivotTableFieldOptions.Builder
collapseStateOptions(Consumer<PivotTableFieldCollapseStateOption.Builder>... collapseStateOptions)
The collapse state options for the pivot table field options.PivotTableFieldOptions.Builder
collapseStateOptions(PivotTableFieldCollapseStateOption... collapseStateOptions)
The collapse state options for the pivot table field options.PivotTableFieldOptions.Builder
dataPathOptions(Collection<PivotTableDataPathOption> dataPathOptions)
The data path options for the pivot table field options.PivotTableFieldOptions.Builder
dataPathOptions(Consumer<PivotTableDataPathOption.Builder>... dataPathOptions)
The data path options for the pivot table field options.PivotTableFieldOptions.Builder
dataPathOptions(PivotTableDataPathOption... dataPathOptions)
The data path options for the pivot table field options.PivotTableFieldOptions.Builder
selectedFieldOptions(Collection<PivotTableFieldOption> selectedFieldOptions)
The selected field options for the pivot table field options.PivotTableFieldOptions.Builder
selectedFieldOptions(Consumer<PivotTableFieldOption.Builder>... selectedFieldOptions)
The selected field options for the pivot table field options.PivotTableFieldOptions.Builder
selectedFieldOptions(PivotTableFieldOption... selectedFieldOptions)
The selected field options for the pivot table field options.-
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
-
selectedFieldOptions
PivotTableFieldOptions.Builder selectedFieldOptions(Collection<PivotTableFieldOption> selectedFieldOptions)
The selected field options for the pivot table field options.
- Parameters:
selectedFieldOptions
- The selected field options for the pivot table field options.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
selectedFieldOptions
PivotTableFieldOptions.Builder selectedFieldOptions(PivotTableFieldOption... selectedFieldOptions)
The selected field options for the pivot table field options.
- Parameters:
selectedFieldOptions
- The selected field options for the pivot table field options.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
selectedFieldOptions
PivotTableFieldOptions.Builder selectedFieldOptions(Consumer<PivotTableFieldOption.Builder>... selectedFieldOptions)
The selected field options for the pivot table field options.
This is a convenience method that creates an instance of thePivotTableFieldOption.Builder
avoiding the need to create one manually viaPivotTableFieldOption.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#selectedFieldOptions(List
.) - Parameters:
selectedFieldOptions
- a consumer that will call methods onPivotTableFieldOption.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#selectedFieldOptions(java.util.Collection
)
-
dataPathOptions
PivotTableFieldOptions.Builder dataPathOptions(Collection<PivotTableDataPathOption> dataPathOptions)
The data path options for the pivot table field options.
- Parameters:
dataPathOptions
- The data path options for the pivot table field options.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dataPathOptions
PivotTableFieldOptions.Builder dataPathOptions(PivotTableDataPathOption... dataPathOptions)
The data path options for the pivot table field options.
- Parameters:
dataPathOptions
- The data path options for the pivot table field options.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dataPathOptions
PivotTableFieldOptions.Builder dataPathOptions(Consumer<PivotTableDataPathOption.Builder>... dataPathOptions)
The data path options for the pivot table field options.
This is a convenience method that creates an instance of thePivotTableDataPathOption.Builder
avoiding the need to create one manually viaPivotTableDataPathOption.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#dataPathOptions(List
.) - Parameters:
dataPathOptions
- a consumer that will call methods onPivotTableDataPathOption.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#dataPathOptions(java.util.Collection
)
-
collapseStateOptions
PivotTableFieldOptions.Builder collapseStateOptions(Collection<PivotTableFieldCollapseStateOption> collapseStateOptions)
The collapse state options for the pivot table field options.
- Parameters:
collapseStateOptions
- The collapse state options for the pivot table field options.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
collapseStateOptions
PivotTableFieldOptions.Builder collapseStateOptions(PivotTableFieldCollapseStateOption... collapseStateOptions)
The collapse state options for the pivot table field options.
- Parameters:
collapseStateOptions
- The collapse state options for the pivot table field options.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
collapseStateOptions
PivotTableFieldOptions.Builder collapseStateOptions(Consumer<PivotTableFieldCollapseStateOption.Builder>... collapseStateOptions)
The collapse state options for the pivot table field options.
This is a convenience method that creates an instance of thePivotTableFieldCollapseStateOption.Builder
avoiding the need to create one manually viaPivotTableFieldCollapseStateOption.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#collapseStateOptions(List
.) - Parameters:
collapseStateOptions
- a consumer that will call methods onPivotTableFieldCollapseStateOption.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#collapseStateOptions(java.util.Collection
)
-
-