Interface FilledMapSortConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FilledMapSortConfiguration.Builder,FilledMapSortConfiguration>,SdkBuilder<FilledMapSortConfiguration.Builder,FilledMapSortConfiguration>,SdkPojo
- Enclosing class:
- FilledMapSortConfiguration
@Mutable @NotThreadSafe public static interface FilledMapSortConfiguration.Builder extends SdkPojo, CopyableBuilder<FilledMapSortConfiguration.Builder,FilledMapSortConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FilledMapSortConfiguration.BuildercategorySort(Collection<FieldSortOptions> categorySort)The sort configuration of the location fields.FilledMapSortConfiguration.BuildercategorySort(Consumer<FieldSortOptions.Builder>... categorySort)The sort configuration of the location fields.FilledMapSortConfiguration.BuildercategorySort(FieldSortOptions... categorySort)The sort configuration of the location 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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
categorySort
FilledMapSortConfiguration.Builder categorySort(Collection<FieldSortOptions> categorySort)
The sort configuration of the location fields.
- Parameters:
categorySort- The sort configuration of the location fields.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
categorySort
FilledMapSortConfiguration.Builder categorySort(FieldSortOptions... categorySort)
The sort configuration of the location fields.
- Parameters:
categorySort- The sort configuration of the location fields.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
categorySort
FilledMapSortConfiguration.Builder categorySort(Consumer<FieldSortOptions.Builder>... categorySort)
The sort configuration of the location 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#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)
-
-