Interface LineChartSortConfiguration.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<LineChartSortConfiguration.Builder,LineChartSortConfiguration>
,SdkBuilder<LineChartSortConfiguration.Builder,LineChartSortConfiguration>
,SdkPojo
- Enclosing class:
- LineChartSortConfiguration
public static interface LineChartSortConfiguration.Builder extends SdkPojo, CopyableBuilder<LineChartSortConfiguration.Builder,LineChartSortConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default LineChartSortConfiguration.Builder
categoryItemsLimitConfiguration(Consumer<ItemsLimitConfiguration.Builder> categoryItemsLimitConfiguration)
The limit on the number of categories that are displayed in a line chart.LineChartSortConfiguration.Builder
categoryItemsLimitConfiguration(ItemsLimitConfiguration categoryItemsLimitConfiguration)
The limit on the number of categories that are displayed in a line chart.LineChartSortConfiguration.Builder
categorySort(Collection<FieldSortOptions> categorySort)
The sort configuration of the category fields.LineChartSortConfiguration.Builder
categorySort(Consumer<FieldSortOptions.Builder>... categorySort)
The sort configuration of the category fields.LineChartSortConfiguration.Builder
categorySort(FieldSortOptions... categorySort)
The sort configuration of the category fields.default LineChartSortConfiguration.Builder
colorItemsLimitConfiguration(Consumer<ItemsLimitConfiguration.Builder> colorItemsLimitConfiguration)
The limit on the number of lines that are displayed in a line chart.LineChartSortConfiguration.Builder
colorItemsLimitConfiguration(ItemsLimitConfiguration colorItemsLimitConfiguration)
The limit on the number of lines that are displayed in a line chart.default LineChartSortConfiguration.Builder
smallMultiplesLimitConfiguration(Consumer<ItemsLimitConfiguration.Builder> smallMultiplesLimitConfiguration)
The limit on the number of small multiples panels that are displayed.LineChartSortConfiguration.Builder
smallMultiplesLimitConfiguration(ItemsLimitConfiguration smallMultiplesLimitConfiguration)
The limit on the number of small multiples panels that are displayed.LineChartSortConfiguration.Builder
smallMultiplesSort(Collection<FieldSortOptions> smallMultiplesSort)
The sort configuration of the small multiples field.LineChartSortConfiguration.Builder
smallMultiplesSort(Consumer<FieldSortOptions.Builder>... smallMultiplesSort)
The sort configuration of the small multiples field.LineChartSortConfiguration.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
LineChartSortConfiguration.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
LineChartSortConfiguration.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
LineChartSortConfiguration.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
)
-
categoryItemsLimitConfiguration
LineChartSortConfiguration.Builder categoryItemsLimitConfiguration(ItemsLimitConfiguration categoryItemsLimitConfiguration)
The limit on the number of categories that are displayed in a line chart.
- Parameters:
categoryItemsLimitConfiguration
- The limit on the number of categories that are displayed in a line chart.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
categoryItemsLimitConfiguration
default LineChartSortConfiguration.Builder categoryItemsLimitConfiguration(Consumer<ItemsLimitConfiguration.Builder> categoryItemsLimitConfiguration)
The limit on the number of categories that are displayed in a line 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 tocategoryItemsLimitConfiguration(ItemsLimitConfiguration)
.- Parameters:
categoryItemsLimitConfiguration
- 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:
categoryItemsLimitConfiguration(ItemsLimitConfiguration)
-
colorItemsLimitConfiguration
LineChartSortConfiguration.Builder colorItemsLimitConfiguration(ItemsLimitConfiguration colorItemsLimitConfiguration)
The limit on the number of lines that are displayed in a line chart.
- Parameters:
colorItemsLimitConfiguration
- The limit on the number of lines that are displayed in a line chart.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
colorItemsLimitConfiguration
default LineChartSortConfiguration.Builder colorItemsLimitConfiguration(Consumer<ItemsLimitConfiguration.Builder> colorItemsLimitConfiguration)
The limit on the number of lines that are displayed in a line 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 tocolorItemsLimitConfiguration(ItemsLimitConfiguration)
.- Parameters:
colorItemsLimitConfiguration
- 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:
colorItemsLimitConfiguration(ItemsLimitConfiguration)
-
smallMultiplesSort
LineChartSortConfiguration.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
LineChartSortConfiguration.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
LineChartSortConfiguration.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
LineChartSortConfiguration.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 LineChartSortConfiguration.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)
-
-