Interface DataFieldSeriesItem.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DataFieldSeriesItem.Builder,DataFieldSeriesItem>,SdkBuilder<DataFieldSeriesItem.Builder,DataFieldSeriesItem>,SdkPojo
- Enclosing class:
- DataFieldSeriesItem
public static interface DataFieldSeriesItem.Builder extends SdkPojo, CopyableBuilder<DataFieldSeriesItem.Builder,DataFieldSeriesItem>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description DataFieldSeriesItem.BuilderaxisBinding(String axisBinding)The axis that you are binding the field to.DataFieldSeriesItem.BuilderaxisBinding(AxisBinding axisBinding)The axis that you are binding the field to.DataFieldSeriesItem.BuilderfieldId(String fieldId)The field ID of the field that you are setting the axis binding to.DataFieldSeriesItem.BuilderfieldValue(String fieldValue)The field value of the field that you are setting the axis binding to.default DataFieldSeriesItem.Buildersettings(Consumer<LineChartSeriesSettings.Builder> settings)The options that determine the presentation of line series associated to the field.DataFieldSeriesItem.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
DataFieldSeriesItem.Builder fieldId(String fieldId)
The field ID of the field that you are setting the axis binding to.
- Parameters:
fieldId- The field ID of the field that you are setting the axis binding to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
fieldValue
DataFieldSeriesItem.Builder fieldValue(String fieldValue)
The field value of the field that you are setting the axis binding to.
- Parameters:
fieldValue- The field value of the field that you are setting the axis binding to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
axisBinding
DataFieldSeriesItem.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
DataFieldSeriesItem.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
DataFieldSeriesItem.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 DataFieldSeriesItem.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)
-
-