Interface TooltipOptions.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<TooltipOptions.Builder,
,TooltipOptions> SdkBuilder<TooltipOptions.Builder,
,TooltipOptions> SdkPojo
- Enclosing class:
TooltipOptions
-
Method Summary
Modifier and TypeMethodDescriptiondefault TooltipOptions.Builder
fieldBasedTooltip
(Consumer<FieldBasedTooltip.Builder> fieldBasedTooltip) The setup for the detailed tooltip.fieldBasedTooltip
(FieldBasedTooltip fieldBasedTooltip) The setup for the detailed tooltip.selectedTooltipType
(String selectedTooltipType) The selected type for the tooltip.selectedTooltipType
(SelectedTooltipType selectedTooltipType) The selected type for the tooltip.tooltipVisibility
(String tooltipVisibility) Determines whether or not the tooltip is visible.tooltipVisibility
(Visibility tooltipVisibility) Determines whether or not the tooltip is visible.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 Details
-
tooltipVisibility
Determines whether or not the tooltip is visible.
- Parameters:
tooltipVisibility
- Determines whether or not the tooltip is visible.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
tooltipVisibility
Determines whether or not the tooltip is visible.
- Parameters:
tooltipVisibility
- Determines whether or not the tooltip is visible.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
selectedTooltipType
The selected type for the tooltip. Choose one of the following options:
-
BASIC
: A basic tooltip. -
DETAILED
: A detailed tooltip.
- Parameters:
selectedTooltipType
- The selected type for the tooltip. Choose one of the following options:-
BASIC
: A basic tooltip. -
DETAILED
: A detailed tooltip.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
-
selectedTooltipType
The selected type for the tooltip. Choose one of the following options:
-
BASIC
: A basic tooltip. -
DETAILED
: A detailed tooltip.
- Parameters:
selectedTooltipType
- The selected type for the tooltip. Choose one of the following options:-
BASIC
: A basic tooltip. -
DETAILED
: A detailed tooltip.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
-
fieldBasedTooltip
The setup for the detailed tooltip. The tooltip setup is always saved. The display type is decided based on the tooltip type.
- Parameters:
fieldBasedTooltip
- The setup for the detailed tooltip. The tooltip setup is always saved. The display type is decided based on the tooltip type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
fieldBasedTooltip
default TooltipOptions.Builder fieldBasedTooltip(Consumer<FieldBasedTooltip.Builder> fieldBasedTooltip) The setup for the detailed tooltip. The tooltip setup is always saved. The display type is decided based on the tooltip type.
This is a convenience method that creates an instance of theFieldBasedTooltip.Builder
avoiding the need to create one manually viaFieldBasedTooltip.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tofieldBasedTooltip(FieldBasedTooltip)
.- Parameters:
fieldBasedTooltip
- a consumer that will call methods onFieldBasedTooltip.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-