Interface FilledMapAggregatedFieldWells.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FilledMapAggregatedFieldWells.Builder,FilledMapAggregatedFieldWells>,SdkBuilder<FilledMapAggregatedFieldWells.Builder,FilledMapAggregatedFieldWells>,SdkPojo
- Enclosing class:
- FilledMapAggregatedFieldWells
@Mutable @NotThreadSafe public static interface FilledMapAggregatedFieldWells.Builder extends SdkPojo, CopyableBuilder<FilledMapAggregatedFieldWells.Builder,FilledMapAggregatedFieldWells>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FilledMapAggregatedFieldWells.Buildergeospatial(Collection<DimensionField> geospatial)The aggregated location field well of the filled map.FilledMapAggregatedFieldWells.Buildergeospatial(Consumer<DimensionField.Builder>... geospatial)The aggregated location field well of the filled map.FilledMapAggregatedFieldWells.Buildergeospatial(DimensionField... geospatial)The aggregated location field well of the filled map.FilledMapAggregatedFieldWells.Buildervalues(Collection<MeasureField> values)The aggregated color field well of a filled map.FilledMapAggregatedFieldWells.Buildervalues(Consumer<MeasureField.Builder>... values)The aggregated color field well of a filled map.FilledMapAggregatedFieldWells.Buildervalues(MeasureField... values)The aggregated color field well of a filled map.-
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
-
geospatial
FilledMapAggregatedFieldWells.Builder geospatial(Collection<DimensionField> geospatial)
The aggregated location field well of the filled map. Values are grouped by location fields.
- Parameters:
geospatial- The aggregated location field well of the filled map. Values are grouped by location fields.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
geospatial
FilledMapAggregatedFieldWells.Builder geospatial(DimensionField... geospatial)
The aggregated location field well of the filled map. Values are grouped by location fields.
- Parameters:
geospatial- The aggregated location field well of the filled map. Values are grouped by location fields.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
geospatial
FilledMapAggregatedFieldWells.Builder geospatial(Consumer<DimensionField.Builder>... geospatial)
The aggregated location field well of the filled map. Values are grouped by location 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#geospatial(List.) - Parameters:
geospatial- 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:
#geospatial(java.util.Collection)
-
values
FilledMapAggregatedFieldWells.Builder values(Collection<MeasureField> values)
The aggregated color field well of a filled map. Values are aggregated based on location fields.
- Parameters:
values- The aggregated color field well of a filled map. Values are aggregated based on location fields.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
FilledMapAggregatedFieldWells.Builder values(MeasureField... values)
The aggregated color field well of a filled map. Values are aggregated based on location fields.
- Parameters:
values- The aggregated color field well of a filled map. Values are aggregated based on location fields.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
FilledMapAggregatedFieldWells.Builder values(Consumer<MeasureField.Builder>... values)
The aggregated color field well of a filled map. Values are aggregated based on location 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)
-
-