Interface AxisLabelReferenceOptions.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AxisLabelReferenceOptions.Builder,AxisLabelReferenceOptions>,SdkBuilder<AxisLabelReferenceOptions.Builder,AxisLabelReferenceOptions>,SdkPojo
- Enclosing class:
- AxisLabelReferenceOptions
@Mutable @NotThreadSafe public static interface AxisLabelReferenceOptions.Builder extends SdkPojo, CopyableBuilder<AxisLabelReferenceOptions.Builder,AxisLabelReferenceOptions>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default AxisLabelReferenceOptions.Buildercolumn(Consumer<ColumnIdentifier.Builder> column)The column that the axis label is targeted to.AxisLabelReferenceOptions.Buildercolumn(ColumnIdentifier column)The column that the axis label is targeted to.AxisLabelReferenceOptions.BuilderfieldId(String fieldId)The field that the axis label is targeted to.-
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
-
fieldId
AxisLabelReferenceOptions.Builder fieldId(String fieldId)
The field that the axis label is targeted to.
- Parameters:
fieldId- The field that the axis label is targeted to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
column
AxisLabelReferenceOptions.Builder column(ColumnIdentifier column)
The column that the axis label is targeted to.
- Parameters:
column- The column that the axis label is targeted to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
column
default AxisLabelReferenceOptions.Builder column(Consumer<ColumnIdentifier.Builder> column)
The column that the axis label is targeted to.
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)
-
-