Interface TreeMapSortConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TreeMapSortConfiguration.Builder,TreeMapSortConfiguration>,SdkBuilder<TreeMapSortConfiguration.Builder,TreeMapSortConfiguration>,SdkPojo
- Enclosing class:
- TreeMapSortConfiguration
public static interface TreeMapSortConfiguration.Builder extends SdkPojo, CopyableBuilder<TreeMapSortConfiguration.Builder,TreeMapSortConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default TreeMapSortConfiguration.BuildertreeMapGroupItemsLimitConfiguration(Consumer<ItemsLimitConfiguration.Builder> treeMapGroupItemsLimitConfiguration)The limit on the number of groups that are displayed.TreeMapSortConfiguration.BuildertreeMapGroupItemsLimitConfiguration(ItemsLimitConfiguration treeMapGroupItemsLimitConfiguration)The limit on the number of groups that are displayed.TreeMapSortConfiguration.BuildertreeMapSort(Collection<FieldSortOptions> treeMapSort)The sort configuration of group by fields.TreeMapSortConfiguration.BuildertreeMapSort(Consumer<FieldSortOptions.Builder>... treeMapSort)The sort configuration of group by fields.TreeMapSortConfiguration.BuildertreeMapSort(FieldSortOptions... treeMapSort)The sort configuration of group by 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
-
treeMapSort
TreeMapSortConfiguration.Builder treeMapSort(Collection<FieldSortOptions> treeMapSort)
The sort configuration of group by fields.
- Parameters:
treeMapSort- The sort configuration of group by fields.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
treeMapSort
TreeMapSortConfiguration.Builder treeMapSort(FieldSortOptions... treeMapSort)
The sort configuration of group by fields.
- Parameters:
treeMapSort- The sort configuration of group by fields.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
treeMapSort
TreeMapSortConfiguration.Builder treeMapSort(Consumer<FieldSortOptions.Builder>... treeMapSort)
The sort configuration of group by fields.
This is a convenience method that creates an instance of theFieldSortOptions.Builderavoiding the need to create one manually viaFieldSortOptions.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#treeMapSort(List.) - Parameters:
treeMapSort- 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:
#treeMapSort(java.util.Collection)
-
treeMapGroupItemsLimitConfiguration
TreeMapSortConfiguration.Builder treeMapGroupItemsLimitConfiguration(ItemsLimitConfiguration treeMapGroupItemsLimitConfiguration)
The limit on the number of groups that are displayed.
- Parameters:
treeMapGroupItemsLimitConfiguration- The limit on the number of groups that are displayed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
treeMapGroupItemsLimitConfiguration
default TreeMapSortConfiguration.Builder treeMapGroupItemsLimitConfiguration(Consumer<ItemsLimitConfiguration.Builder> treeMapGroupItemsLimitConfiguration)
The limit on the number of groups that are displayed.
This is a convenience method that creates an instance of theItemsLimitConfiguration.Builderavoiding the need to create one manually viaItemsLimitConfiguration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed totreeMapGroupItemsLimitConfiguration(ItemsLimitConfiguration).- Parameters:
treeMapGroupItemsLimitConfiguration- 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:
treeMapGroupItemsLimitConfiguration(ItemsLimitConfiguration)
-
-