Interface ColumnTooltipItem.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ColumnTooltipItem.Builder,ColumnTooltipItem>,SdkBuilder<ColumnTooltipItem.Builder,ColumnTooltipItem>,SdkPojo
- Enclosing class:
- ColumnTooltipItem
@Mutable @NotThreadSafe public static interface ColumnTooltipItem.Builder extends SdkPojo, CopyableBuilder<ColumnTooltipItem.Builder,ColumnTooltipItem>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default ColumnTooltipItem.Builderaggregation(Consumer<AggregationFunction.Builder> aggregation)The aggregation function of the column tooltip item.ColumnTooltipItem.Builderaggregation(AggregationFunction aggregation)The aggregation function of the column tooltip item.default ColumnTooltipItem.Buildercolumn(Consumer<ColumnIdentifier.Builder> column)The target column of the tooltip item.ColumnTooltipItem.Buildercolumn(ColumnIdentifier column)The target column of the tooltip item.ColumnTooltipItem.Builderlabel(String label)The label of the tooltip item.ColumnTooltipItem.BuildertooltipTarget(String tooltipTarget)Determines the target of the column tooltip item in a combo chart visual.ColumnTooltipItem.BuildertooltipTarget(TooltipTarget tooltipTarget)Determines the target of the column tooltip item in a combo chart visual.ColumnTooltipItem.Buildervisibility(String visibility)The visibility of the tooltip item.ColumnTooltipItem.Buildervisibility(Visibility visibility)The visibility of the tooltip item.-
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
-
column
ColumnTooltipItem.Builder column(ColumnIdentifier column)
The target column of the tooltip item.
- Parameters:
column- The target column of the tooltip item.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
column
default ColumnTooltipItem.Builder column(Consumer<ColumnIdentifier.Builder> column)
The target column of the tooltip item.
This is a convenience method that creates an instance of theColumnIdentifier.Builderavoiding the need to create one manually viaColumnIdentifier.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tocolumn(ColumnIdentifier).- Parameters:
column- a consumer that will call methods onColumnIdentifier.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
column(ColumnIdentifier)
-
label
ColumnTooltipItem.Builder label(String label)
The label of the tooltip item.
- Parameters:
label- The label of the tooltip item.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
visibility
ColumnTooltipItem.Builder visibility(String visibility)
The visibility of the tooltip item.
- Parameters:
visibility- The visibility of the tooltip item.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
Visibility,Visibility
-
visibility
ColumnTooltipItem.Builder visibility(Visibility visibility)
The visibility of the tooltip item.
- Parameters:
visibility- The visibility of the tooltip item.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
Visibility,Visibility
-
aggregation
ColumnTooltipItem.Builder aggregation(AggregationFunction aggregation)
The aggregation function of the column tooltip item.
- Parameters:
aggregation- The aggregation function of the column tooltip item.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
aggregation
default ColumnTooltipItem.Builder aggregation(Consumer<AggregationFunction.Builder> aggregation)
The aggregation function of the column tooltip item.
This is a convenience method that creates an instance of theAggregationFunction.Builderavoiding the need to create one manually viaAggregationFunction.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toaggregation(AggregationFunction).- Parameters:
aggregation- a consumer that will call methods onAggregationFunction.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
aggregation(AggregationFunction)
-
tooltipTarget
ColumnTooltipItem.Builder tooltipTarget(String tooltipTarget)
Determines the target of the column tooltip item in a combo chart visual.
- Parameters:
tooltipTarget- Determines the target of the column tooltip item in a combo chart visual.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
TooltipTarget,TooltipTarget
-
tooltipTarget
ColumnTooltipItem.Builder tooltipTarget(TooltipTarget tooltipTarget)
Determines the target of the column tooltip item in a combo chart visual.
- Parameters:
tooltipTarget- Determines the target of the column tooltip item in a combo chart visual.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
TooltipTarget,TooltipTarget
-
-