Interface TooltipOptions.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TooltipOptions.Builder,TooltipOptions>,SdkBuilder<TooltipOptions.Builder,TooltipOptions>,SdkPojo
- Enclosing class:
- TooltipOptions
@Mutable @NotThreadSafe public static interface TooltipOptions.Builder extends SdkPojo, CopyableBuilder<TooltipOptions.Builder,TooltipOptions>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default TooltipOptions.BuilderfieldBasedTooltip(Consumer<FieldBasedTooltip.Builder> fieldBasedTooltip)The setup for the detailed tooltip.TooltipOptions.BuilderfieldBasedTooltip(FieldBasedTooltip fieldBasedTooltip)The setup for the detailed tooltip.TooltipOptions.BuilderselectedTooltipType(String selectedTooltipType)The selected type for the tooltip.TooltipOptions.BuilderselectedTooltipType(SelectedTooltipType selectedTooltipType)The selected type for the tooltip.TooltipOptions.BuildertooltipVisibility(String tooltipVisibility)Determines whether or not the tooltip is visible.TooltipOptions.BuildertooltipVisibility(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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
tooltipVisibility
TooltipOptions.Builder tooltipVisibility(String 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:
Visibility,Visibility
-
tooltipVisibility
TooltipOptions.Builder tooltipVisibility(Visibility 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:
Visibility,Visibility
-
selectedTooltipType
TooltipOptions.Builder selectedTooltipType(String 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,SelectedTooltipType
-
-
selectedTooltipType
TooltipOptions.Builder selectedTooltipType(SelectedTooltipType 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,SelectedTooltipType
-
-
fieldBasedTooltip
TooltipOptions.Builder fieldBasedTooltip(FieldBasedTooltip 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.Builderavoiding the need to create one manually viaFieldBasedTooltip.builder().When the
Consumercompletes,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:
fieldBasedTooltip(FieldBasedTooltip)
-
-