Interface DefaultFilterListControlOptions.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DefaultFilterListControlOptions.Builder,DefaultFilterListControlOptions>,SdkBuilder<DefaultFilterListControlOptions.Builder,DefaultFilterListControlOptions>,SdkPojo
- Enclosing class:
- DefaultFilterListControlOptions
public static interface DefaultFilterListControlOptions.Builder extends SdkPojo, CopyableBuilder<DefaultFilterListControlOptions.Builder,DefaultFilterListControlOptions>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default DefaultFilterListControlOptions.BuilderdisplayOptions(Consumer<ListControlDisplayOptions.Builder> displayOptions)The display options of a control.DefaultFilterListControlOptions.BuilderdisplayOptions(ListControlDisplayOptions displayOptions)The display options of a control.default DefaultFilterListControlOptions.BuilderselectableValues(Consumer<FilterSelectableValues.Builder> selectableValues)A list of selectable values that are used in a control.DefaultFilterListControlOptions.BuilderselectableValues(FilterSelectableValues selectableValues)A list of selectable values that are used in a control.DefaultFilterListControlOptions.Buildertype(String type)The type of theDefaultFilterListControlOptions.DefaultFilterListControlOptions.Buildertype(SheetControlListType type)The type of theDefaultFilterListControlOptions.-
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
DefaultFilterListControlOptions.Builder displayOptions(ListControlDisplayOptions 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 DefaultFilterListControlOptions.Builder displayOptions(Consumer<ListControlDisplayOptions.Builder> displayOptions)
The display options of a control.
This is a convenience method that creates an instance of theListControlDisplayOptions.Builderavoiding the need to create one manually viaListControlDisplayOptions.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed todisplayOptions(ListControlDisplayOptions).- Parameters:
displayOptions- a consumer that will call methods onListControlDisplayOptions.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
displayOptions(ListControlDisplayOptions)
-
type
DefaultFilterListControlOptions.Builder type(String type)
The type of the
DefaultFilterListControlOptions. Choose one of the following options:-
MULTI_SELECT: The user can select multiple entries from the list. -
SINGLE_SELECT: The user can select a single entry from the list.
- Parameters:
type- The type of theDefaultFilterListControlOptions. Choose one of the following options:-
MULTI_SELECT: The user can select multiple entries from the list. -
SINGLE_SELECT: The user can select a single entry from the list.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SheetControlListType,SheetControlListType
-
-
type
DefaultFilterListControlOptions.Builder type(SheetControlListType type)
The type of the
DefaultFilterListControlOptions. Choose one of the following options:-
MULTI_SELECT: The user can select multiple entries from the list. -
SINGLE_SELECT: The user can select a single entry from the list.
- Parameters:
type- The type of theDefaultFilterListControlOptions. Choose one of the following options:-
MULTI_SELECT: The user can select multiple entries from the list. -
SINGLE_SELECT: The user can select a single entry from the list.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SheetControlListType,SheetControlListType
-
-
selectableValues
DefaultFilterListControlOptions.Builder selectableValues(FilterSelectableValues selectableValues)
A list of selectable values that are used in a control.
- Parameters:
selectableValues- A list of selectable values that are used in a control.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
selectableValues
default DefaultFilterListControlOptions.Builder selectableValues(Consumer<FilterSelectableValues.Builder> selectableValues)
A list of selectable values that are used in a control.
This is a convenience method that creates an instance of theFilterSelectableValues.Builderavoiding the need to create one manually viaFilterSelectableValues.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toselectableValues(FilterSelectableValues).- Parameters:
selectableValues- a consumer that will call methods onFilterSelectableValues.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
selectableValues(FilterSelectableValues)
-
-