Interface FunnelChartAggregatedFieldWells.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FunnelChartAggregatedFieldWells.Builder,FunnelChartAggregatedFieldWells>,SdkBuilder<FunnelChartAggregatedFieldWells.Builder,FunnelChartAggregatedFieldWells>,SdkPojo
- Enclosing class:
- FunnelChartAggregatedFieldWells
public static interface FunnelChartAggregatedFieldWells.Builder extends SdkPojo, CopyableBuilder<FunnelChartAggregatedFieldWells.Builder,FunnelChartAggregatedFieldWells>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FunnelChartAggregatedFieldWells.Buildercategory(Collection<DimensionField> category)The category field wells of a funnel chart.FunnelChartAggregatedFieldWells.Buildercategory(Consumer<DimensionField.Builder>... category)The category field wells of a funnel chart.FunnelChartAggregatedFieldWells.Buildercategory(DimensionField... category)The category field wells of a funnel chart.FunnelChartAggregatedFieldWells.Buildervalues(Collection<MeasureField> values)The value field wells of a funnel chart.FunnelChartAggregatedFieldWells.Buildervalues(Consumer<MeasureField.Builder>... values)The value field wells of a funnel chart.FunnelChartAggregatedFieldWells.Buildervalues(MeasureField... values)The value field wells of a funnel 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
FunnelChartAggregatedFieldWells.Builder category(Collection<DimensionField> category)
The category field wells of a funnel chart. Values are grouped by category fields.
- Parameters:
category- The category field wells of a funnel chart. Values are grouped by category fields.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
category
FunnelChartAggregatedFieldWells.Builder category(DimensionField... category)
The category field wells of a funnel chart. Values are grouped by category fields.
- Parameters:
category- The category field wells of a funnel chart. Values are grouped by category fields.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
category
FunnelChartAggregatedFieldWells.Builder category(Consumer<DimensionField.Builder>... category)
The category field wells of a funnel chart. Values are grouped by category 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#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
FunnelChartAggregatedFieldWells.Builder values(Collection<MeasureField> values)
The value field wells of a funnel chart. Values are aggregated based on categories.
- Parameters:
values- The value field wells of a funnel chart. Values are aggregated based on categories.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
FunnelChartAggregatedFieldWells.Builder values(MeasureField... values)
The value field wells of a funnel chart. Values are aggregated based on categories.
- Parameters:
values- The value field wells of a funnel chart. Values are aggregated based on categories.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
FunnelChartAggregatedFieldWells.Builder values(Consumer<MeasureField.Builder>... values)
The value field wells of a funnel 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)
-
-