Interface FieldSeriesItem.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FieldSeriesItem.Builder,FieldSeriesItem>,SdkBuilder<FieldSeriesItem.Builder,FieldSeriesItem>,SdkPojo
- Enclosing class:
- FieldSeriesItem
public static interface FieldSeriesItem.Builder extends SdkPojo, CopyableBuilder<FieldSeriesItem.Builder,FieldSeriesItem>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description FieldSeriesItem.BuilderaxisBinding(String axisBinding)The axis that you are binding the field to.FieldSeriesItem.BuilderaxisBinding(AxisBinding axisBinding)The axis that you are binding the field to.FieldSeriesItem.BuilderfieldId(String fieldId)The field ID of the field for which you are setting the axis binding.default FieldSeriesItem.Buildersettings(Consumer<LineChartSeriesSettings.Builder> settings)The options that determine the presentation of line series associated to the field.FieldSeriesItem.Buildersettings(LineChartSeriesSettings settings)The options that determine the presentation of line series associated to the field.-
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
-
fieldId
FieldSeriesItem.Builder fieldId(String fieldId)
The field ID of the field for which you are setting the axis binding.
- Parameters:
fieldId- The field ID of the field for which you are setting the axis binding.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
axisBinding
FieldSeriesItem.Builder axisBinding(String axisBinding)
The axis that you are binding the field to.
- Parameters:
axisBinding- The axis that you are binding the field to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AxisBinding,AxisBinding
-
axisBinding
FieldSeriesItem.Builder axisBinding(AxisBinding axisBinding)
The axis that you are binding the field to.
- Parameters:
axisBinding- The axis that you are binding the field to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AxisBinding,AxisBinding
-
settings
FieldSeriesItem.Builder settings(LineChartSeriesSettings settings)
The options that determine the presentation of line series associated to the field.
- Parameters:
settings- The options that determine the presentation of line series associated to the field.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
settings
default FieldSeriesItem.Builder settings(Consumer<LineChartSeriesSettings.Builder> settings)
The options that determine the presentation of line series associated to the field.
This is a convenience method that creates an instance of theLineChartSeriesSettings.Builderavoiding the need to create one manually viaLineChartSeriesSettings.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tosettings(LineChartSeriesSettings).- Parameters:
settings- a consumer that will call methods onLineChartSeriesSettings.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
settings(LineChartSeriesSettings)
-
-