Interface PieChartSortConfiguration.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<PieChartSortConfiguration.Builder,PieChartSortConfiguration>
,SdkBuilder<PieChartSortConfiguration.Builder,PieChartSortConfiguration>
,SdkPojo
- Enclosing class:
- PieChartSortConfiguration
public static interface PieChartSortConfiguration.Builder extends SdkPojo, CopyableBuilder<PieChartSortConfiguration.Builder,PieChartSortConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default PieChartSortConfiguration.Builder
categoryItemsLimit(Consumer<ItemsLimitConfiguration.Builder> categoryItemsLimit)
The limit on the number of categories that are displayed in a pie chart.PieChartSortConfiguration.Builder
categoryItemsLimit(ItemsLimitConfiguration categoryItemsLimit)
The limit on the number of categories that are displayed in a pie chart.PieChartSortConfiguration.Builder
categorySort(Collection<FieldSortOptions> categorySort)
The sort configuration of the category fields.PieChartSortConfiguration.Builder
categorySort(Consumer<FieldSortOptions.Builder>... categorySort)
The sort configuration of the category fields.PieChartSortConfiguration.Builder
categorySort(FieldSortOptions... categorySort)
The sort configuration of the category fields.default PieChartSortConfiguration.Builder
smallMultiplesLimitConfiguration(Consumer<ItemsLimitConfiguration.Builder> smallMultiplesLimitConfiguration)
The limit on the number of small multiples panels that are displayed.PieChartSortConfiguration.Builder
smallMultiplesLimitConfiguration(ItemsLimitConfiguration smallMultiplesLimitConfiguration)
The limit on the number of small multiples panels that are displayed.PieChartSortConfiguration.Builder
smallMultiplesSort(Collection<FieldSortOptions> smallMultiplesSort)
The sort configuration of the small multiples field.PieChartSortConfiguration.Builder
smallMultiplesSort(Consumer<FieldSortOptions.Builder>... smallMultiplesSort)
The sort configuration of the small multiples field.PieChartSortConfiguration.Builder
smallMultiplesSort(FieldSortOptions... smallMultiplesSort)
The sort configuration of the small multiples field.-
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
-
categorySort
PieChartSortConfiguration.Builder categorySort(Collection<FieldSortOptions> categorySort)
The sort configuration of the category fields.
- Parameters:
categorySort
- The sort configuration of the category fields.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
categorySort
PieChartSortConfiguration.Builder categorySort(FieldSortOptions... categorySort)
The sort configuration of the category fields.
- Parameters:
categorySort
- The sort configuration of the category fields.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
categorySort
PieChartSortConfiguration.Builder categorySort(Consumer<FieldSortOptions.Builder>... categorySort)
The sort configuration of the category fields.
This is a convenience method that creates an instance of theFieldSortOptions.Builder
avoiding the need to create one manually viaFieldSortOptions.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#categorySort(List
.) - Parameters:
categorySort
- a consumer that will call methods onFieldSortOptions.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#categorySort(java.util.Collection
)
-
categoryItemsLimit
PieChartSortConfiguration.Builder categoryItemsLimit(ItemsLimitConfiguration categoryItemsLimit)
The limit on the number of categories that are displayed in a pie chart.
- Parameters:
categoryItemsLimit
- The limit on the number of categories that are displayed in a pie chart.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
categoryItemsLimit
default PieChartSortConfiguration.Builder categoryItemsLimit(Consumer<ItemsLimitConfiguration.Builder> categoryItemsLimit)
The limit on the number of categories that are displayed in a pie chart.
This is a convenience method that creates an instance of theItemsLimitConfiguration.Builder
avoiding the need to create one manually viaItemsLimitConfiguration.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tocategoryItemsLimit(ItemsLimitConfiguration)
.- Parameters:
categoryItemsLimit
- a consumer that will call methods onItemsLimitConfiguration.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
categoryItemsLimit(ItemsLimitConfiguration)
-
smallMultiplesSort
PieChartSortConfiguration.Builder smallMultiplesSort(Collection<FieldSortOptions> smallMultiplesSort)
The sort configuration of the small multiples field.
- Parameters:
smallMultiplesSort
- The sort configuration of the small multiples field.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
smallMultiplesSort
PieChartSortConfiguration.Builder smallMultiplesSort(FieldSortOptions... smallMultiplesSort)
The sort configuration of the small multiples field.
- Parameters:
smallMultiplesSort
- The sort configuration of the small multiples field.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
smallMultiplesSort
PieChartSortConfiguration.Builder smallMultiplesSort(Consumer<FieldSortOptions.Builder>... smallMultiplesSort)
The sort configuration of the small multiples field.
This is a convenience method that creates an instance of theFieldSortOptions.Builder
avoiding the need to create one manually viaFieldSortOptions.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#smallMultiplesSort(List
.) - Parameters:
smallMultiplesSort
- a consumer that will call methods onFieldSortOptions.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#smallMultiplesSort(java.util.Collection
)
-
smallMultiplesLimitConfiguration
PieChartSortConfiguration.Builder smallMultiplesLimitConfiguration(ItemsLimitConfiguration smallMultiplesLimitConfiguration)
The limit on the number of small multiples panels that are displayed.
- Parameters:
smallMultiplesLimitConfiguration
- The limit on the number of small multiples panels that are displayed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
smallMultiplesLimitConfiguration
default PieChartSortConfiguration.Builder smallMultiplesLimitConfiguration(Consumer<ItemsLimitConfiguration.Builder> smallMultiplesLimitConfiguration)
The limit on the number of small multiples panels that are displayed.
This is a convenience method that creates an instance of theItemsLimitConfiguration.Builder
avoiding the need to create one manually viaItemsLimitConfiguration.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tosmallMultiplesLimitConfiguration(ItemsLimitConfiguration)
.- Parameters:
smallMultiplesLimitConfiguration
- a consumer that will call methods onItemsLimitConfiguration.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
smallMultiplesLimitConfiguration(ItemsLimitConfiguration)
-
-