Interface FilterSliderControl.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FilterSliderControl.Builder,FilterSliderControl>,SdkBuilder<FilterSliderControl.Builder,FilterSliderControl>,SdkPojo
- Enclosing class:
- FilterSliderControl
public static interface FilterSliderControl.Builder extends SdkPojo, CopyableBuilder<FilterSliderControl.Builder,FilterSliderControl>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default FilterSliderControl.BuilderdisplayOptions(Consumer<SliderControlDisplayOptions.Builder> displayOptions)The display options of a control.FilterSliderControl.BuilderdisplayOptions(SliderControlDisplayOptions displayOptions)The display options of a control.FilterSliderControl.BuilderfilterControlId(String filterControlId)The ID of theFilterSliderControl.FilterSliderControl.BuildermaximumValue(Double maximumValue)The larger value that is displayed at the right of the slider.FilterSliderControl.BuilderminimumValue(Double minimumValue)The smaller value that is displayed at the left of the slider.FilterSliderControl.BuildersourceFilterId(String sourceFilterId)The source filter ID of theFilterSliderControl.FilterSliderControl.BuilderstepSize(Double stepSize)The number of increments that the slider bar is divided into.FilterSliderControl.Buildertitle(String title)The title of theFilterSliderControl.FilterSliderControl.Buildertype(String type)The type of theFilterSliderControl.FilterSliderControl.Buildertype(SheetControlSliderType type)The type of theFilterSliderControl.-
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
-
filterControlId
FilterSliderControl.Builder filterControlId(String filterControlId)
The ID of the
FilterSliderControl.- Parameters:
filterControlId- The ID of theFilterSliderControl.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
title
FilterSliderControl.Builder title(String title)
The title of the
FilterSliderControl.- Parameters:
title- The title of theFilterSliderControl.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sourceFilterId
FilterSliderControl.Builder sourceFilterId(String sourceFilterId)
The source filter ID of the
FilterSliderControl.- Parameters:
sourceFilterId- The source filter ID of theFilterSliderControl.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
displayOptions
FilterSliderControl.Builder displayOptions(SliderControlDisplayOptions displayOptions)
The display options of a control.
- Parameters:
displayOptions- The display options of a control.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
displayOptions
default FilterSliderControl.Builder displayOptions(Consumer<SliderControlDisplayOptions.Builder> displayOptions)
The display options of a control.
This is a convenience method that creates an instance of theSliderControlDisplayOptions.Builderavoiding the need to create one manually viaSliderControlDisplayOptions.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed todisplayOptions(SliderControlDisplayOptions).- Parameters:
displayOptions- a consumer that will call methods onSliderControlDisplayOptions.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
displayOptions(SliderControlDisplayOptions)
-
type
FilterSliderControl.Builder type(String type)
The type of the
FilterSliderControl. Choose one of the following options:-
SINGLE_POINT: Filter against(equals) a single data point. -
RANGE: Filter data that is in a specified range.
- Parameters:
type- The type of theFilterSliderControl. Choose one of the following options:-
SINGLE_POINT: Filter against(equals) a single data point. -
RANGE: Filter data that is in a specified range.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SheetControlSliderType,SheetControlSliderType
-
-
type
FilterSliderControl.Builder type(SheetControlSliderType type)
The type of the
FilterSliderControl. Choose one of the following options:-
SINGLE_POINT: Filter against(equals) a single data point. -
RANGE: Filter data that is in a specified range.
- Parameters:
type- The type of theFilterSliderControl. Choose one of the following options:-
SINGLE_POINT: Filter against(equals) a single data point. -
RANGE: Filter data that is in a specified range.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SheetControlSliderType,SheetControlSliderType
-
-
maximumValue
FilterSliderControl.Builder maximumValue(Double maximumValue)
The larger value that is displayed at the right of the slider.
- Parameters:
maximumValue- The larger value that is displayed at the right of the slider.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
minimumValue
FilterSliderControl.Builder minimumValue(Double minimumValue)
The smaller value that is displayed at the left of the slider.
- Parameters:
minimumValue- The smaller value that is displayed at the left of the slider.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
stepSize
FilterSliderControl.Builder stepSize(Double stepSize)
The number of increments that the slider bar is divided into.
- Parameters:
stepSize- The number of increments that the slider bar is divided into.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-