Interface PieChartAggregatedFieldWells.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<PieChartAggregatedFieldWells.Builder,PieChartAggregatedFieldWells>,SdkBuilder<PieChartAggregatedFieldWells.Builder,PieChartAggregatedFieldWells>,SdkPojo
- Enclosing class:
- PieChartAggregatedFieldWells
public static interface PieChartAggregatedFieldWells.Builder extends SdkPojo, CopyableBuilder<PieChartAggregatedFieldWells.Builder,PieChartAggregatedFieldWells>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PieChartAggregatedFieldWells.Buildercategory(Collection<DimensionField> category)The category (group/color) field wells of a pie chart.PieChartAggregatedFieldWells.Buildercategory(Consumer<DimensionField.Builder>... category)The category (group/color) field wells of a pie chart.PieChartAggregatedFieldWells.Buildercategory(DimensionField... category)The category (group/color) field wells of a pie chart.PieChartAggregatedFieldWells.BuildersmallMultiples(Collection<DimensionField> smallMultiples)The small multiples field well of a pie chart.PieChartAggregatedFieldWells.BuildersmallMultiples(Consumer<DimensionField.Builder>... smallMultiples)The small multiples field well of a pie chart.PieChartAggregatedFieldWells.BuildersmallMultiples(DimensionField... smallMultiples)The small multiples field well of a pie chart.PieChartAggregatedFieldWells.Buildervalues(Collection<MeasureField> values)The value field wells of a pie chart.PieChartAggregatedFieldWells.Buildervalues(Consumer<MeasureField.Builder>... values)The value field wells of a pie chart.PieChartAggregatedFieldWells.Buildervalues(MeasureField... values)The value field wells of a pie 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, sdkFields
-
-
-
-
Method Detail
-
category
PieChartAggregatedFieldWells.Builder category(Collection<DimensionField> category)
The category (group/color) field wells of a pie chart.
- Parameters:
category- The category (group/color) field wells of a pie chart.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
category
PieChartAggregatedFieldWells.Builder category(DimensionField... category)
The category (group/color) field wells of a pie chart.
- Parameters:
category- The category (group/color) field wells of a pie chart.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
category
PieChartAggregatedFieldWells.Builder category(Consumer<DimensionField.Builder>... category)
The category (group/color) field wells of a pie chart.
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#category(List.) - Parameters:
category- 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:
#category(java.util.Collection)
-
values
PieChartAggregatedFieldWells.Builder values(Collection<MeasureField> values)
The value field wells of a pie chart. Values are aggregated based on categories.
- Parameters:
values- The value field wells of a pie chart. Values are aggregated based on categories.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
PieChartAggregatedFieldWells.Builder values(MeasureField... values)
The value field wells of a pie chart. Values are aggregated based on categories.
- Parameters:
values- The value field wells of a pie chart. Values are aggregated based on categories.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
PieChartAggregatedFieldWells.Builder values(Consumer<MeasureField.Builder>... values)
The value field wells of a pie chart. Values are aggregated based on categories.
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)
-
smallMultiples
PieChartAggregatedFieldWells.Builder smallMultiples(Collection<DimensionField> smallMultiples)
The small multiples field well of a pie chart.
- Parameters:
smallMultiples- The small multiples field well of a pie chart.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
smallMultiples
PieChartAggregatedFieldWells.Builder smallMultiples(DimensionField... smallMultiples)
The small multiples field well of a pie chart.
- Parameters:
smallMultiples- The small multiples field well of a pie chart.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
smallMultiples
PieChartAggregatedFieldWells.Builder smallMultiples(Consumer<DimensionField.Builder>... smallMultiples)
The small multiples field well of a pie chart.
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#smallMultiples(List.) - Parameters:
smallMultiples- 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:
#smallMultiples(java.util.Collection)
-
-