Interface BoxPlotAggregatedFieldWells.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<BoxPlotAggregatedFieldWells.Builder,BoxPlotAggregatedFieldWells>,SdkBuilder<BoxPlotAggregatedFieldWells.Builder,BoxPlotAggregatedFieldWells>,SdkPojo
- Enclosing class:
- BoxPlotAggregatedFieldWells
@Mutable @NotThreadSafe public static interface BoxPlotAggregatedFieldWells.Builder extends SdkPojo, CopyableBuilder<BoxPlotAggregatedFieldWells.Builder,BoxPlotAggregatedFieldWells>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BoxPlotAggregatedFieldWells.BuildergroupBy(Collection<DimensionField> groupBy)The group by field well of a box plot chart.BoxPlotAggregatedFieldWells.BuildergroupBy(Consumer<DimensionField.Builder>... groupBy)The group by field well of a box plot chart.BoxPlotAggregatedFieldWells.BuildergroupBy(DimensionField... groupBy)The group by field well of a box plot chart.BoxPlotAggregatedFieldWells.Buildervalues(Collection<MeasureField> values)The value field well of a box plot chart.BoxPlotAggregatedFieldWells.Buildervalues(Consumer<MeasureField.Builder>... values)The value field well of a box plot chart.BoxPlotAggregatedFieldWells.Buildervalues(MeasureField... values)The value field well of a box plot chart.-
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
-
groupBy
BoxPlotAggregatedFieldWells.Builder groupBy(Collection<DimensionField> groupBy)
The group by field well of a box plot chart. Values are grouped based on group by fields.
- Parameters:
groupBy- The group by field well of a box plot chart. Values are grouped based on group by fields.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
groupBy
BoxPlotAggregatedFieldWells.Builder groupBy(DimensionField... groupBy)
The group by field well of a box plot chart. Values are grouped based on group by fields.
- Parameters:
groupBy- The group by field well of a box plot chart. Values are grouped based on group by fields.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
groupBy
BoxPlotAggregatedFieldWells.Builder groupBy(Consumer<DimensionField.Builder>... groupBy)
The group by field well of a box plot chart. Values are grouped based on group by fields.
This is a convenience method that creates an instance of theDimensionField.Builderavoiding the need to create one manually viaDimensionField.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#groupBy(List.) - Parameters:
groupBy- a consumer that will call methods onDimensionField.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#groupBy(java.util.Collection)
-
values
BoxPlotAggregatedFieldWells.Builder values(Collection<MeasureField> values)
The value field well of a box plot chart. Values are aggregated based on group by fields.
- Parameters:
values- The value field well of a box plot chart. Values are aggregated based on group by fields.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
BoxPlotAggregatedFieldWells.Builder values(MeasureField... values)
The value field well of a box plot chart. Values are aggregated based on group by fields.
- Parameters:
values- The value field well of a box plot chart. Values are aggregated based on group by fields.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
BoxPlotAggregatedFieldWells.Builder values(Consumer<MeasureField.Builder>... values)
The value field well of a box plot chart. Values are aggregated based on group by fields.
This is a convenience method that creates an instance of theMeasureField.Builderavoiding the need to create one manually viaMeasureField.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#values(List.) - Parameters:
values- a consumer that will call methods onMeasureField.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#values(java.util.Collection)
-
-