Interface DefaultSliderControlOptions.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DefaultSliderControlOptions.Builder,DefaultSliderControlOptions>,SdkBuilder<DefaultSliderControlOptions.Builder,DefaultSliderControlOptions>,SdkPojo
- Enclosing class:
- DefaultSliderControlOptions
public static interface DefaultSliderControlOptions.Builder extends SdkPojo, CopyableBuilder<DefaultSliderControlOptions.Builder,DefaultSliderControlOptions>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default DefaultSliderControlOptions.BuilderdisplayOptions(Consumer<SliderControlDisplayOptions.Builder> displayOptions)The display options of a control.DefaultSliderControlOptions.BuilderdisplayOptions(SliderControlDisplayOptions displayOptions)The display options of a control.DefaultSliderControlOptions.BuildermaximumValue(Double maximumValue)The larger value that is displayed at the right of the slider.DefaultSliderControlOptions.BuilderminimumValue(Double minimumValue)The smaller value that is displayed at the left of the slider.DefaultSliderControlOptions.BuilderstepSize(Double stepSize)The number of increments that the slider bar is divided into.DefaultSliderControlOptions.Buildertype(String type)The type of theDefaultSliderControlOptions.DefaultSliderControlOptions.Buildertype(SheetControlSliderType type)The type of theDefaultSliderControlOptions.-
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
-
displayOptions
DefaultSliderControlOptions.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 DefaultSliderControlOptions.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
DefaultSliderControlOptions.Builder type(String type)
The type of the
DefaultSliderControlOptions. 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 theDefaultSliderControlOptions. 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
DefaultSliderControlOptions.Builder type(SheetControlSliderType type)
The type of the
DefaultSliderControlOptions. 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 theDefaultSliderControlOptions. 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
DefaultSliderControlOptions.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
DefaultSliderControlOptions.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
DefaultSliderControlOptions.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.
-
-