Interface WaterfallChartSortConfiguration.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<WaterfallChartSortConfiguration.Builder,WaterfallChartSortConfiguration>
,SdkBuilder<WaterfallChartSortConfiguration.Builder,WaterfallChartSortConfiguration>
,SdkPojo
- Enclosing class:
- WaterfallChartSortConfiguration
public static interface WaterfallChartSortConfiguration.Builder extends SdkPojo, CopyableBuilder<WaterfallChartSortConfiguration.Builder,WaterfallChartSortConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default WaterfallChartSortConfiguration.Builder
breakdownItemsLimit(Consumer<ItemsLimitConfiguration.Builder> breakdownItemsLimit)
The limit on the number of bar groups that are displayed.WaterfallChartSortConfiguration.Builder
breakdownItemsLimit(ItemsLimitConfiguration breakdownItemsLimit)
The limit on the number of bar groups that are displayed.WaterfallChartSortConfiguration.Builder
categorySort(Collection<FieldSortOptions> categorySort)
The sort configuration of the category fields.WaterfallChartSortConfiguration.Builder
categorySort(Consumer<FieldSortOptions.Builder>... categorySort)
The sort configuration of the category fields.WaterfallChartSortConfiguration.Builder
categorySort(FieldSortOptions... categorySort)
The sort configuration of the category fields.-
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
WaterfallChartSortConfiguration.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
WaterfallChartSortConfiguration.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
WaterfallChartSortConfiguration.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
)
-
breakdownItemsLimit
WaterfallChartSortConfiguration.Builder breakdownItemsLimit(ItemsLimitConfiguration breakdownItemsLimit)
The limit on the number of bar groups that are displayed.
- Parameters:
breakdownItemsLimit
- The limit on the number of bar groups that are displayed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
breakdownItemsLimit
default WaterfallChartSortConfiguration.Builder breakdownItemsLimit(Consumer<ItemsLimitConfiguration.Builder> breakdownItemsLimit)
The limit on the number of bar groups 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 tobreakdownItemsLimit(ItemsLimitConfiguration)
.- Parameters:
breakdownItemsLimit
- 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:
breakdownItemsLimit(ItemsLimitConfiguration)
-
-