Interface GeospatialLayerColorField.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<GeospatialLayerColorField.Builder,GeospatialLayerColorField>,SdkBuilder<GeospatialLayerColorField.Builder,GeospatialLayerColorField>,SdkPojo
- Enclosing class:
- GeospatialLayerColorField
@Mutable @NotThreadSafe public static interface GeospatialLayerColorField.Builder extends SdkPojo, CopyableBuilder<GeospatialLayerColorField.Builder,GeospatialLayerColorField>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GeospatialLayerColorField.BuildercolorDimensionsFields(Collection<DimensionField> colorDimensionsFields)A list of color dimension fields.GeospatialLayerColorField.BuildercolorDimensionsFields(Consumer<DimensionField.Builder>... colorDimensionsFields)A list of color dimension fields.GeospatialLayerColorField.BuildercolorDimensionsFields(DimensionField... colorDimensionsFields)A list of color dimension fields.GeospatialLayerColorField.BuildercolorValuesFields(Collection<MeasureField> colorValuesFields)A list of color measure fields.GeospatialLayerColorField.BuildercolorValuesFields(Consumer<MeasureField.Builder>... colorValuesFields)A list of color measure fields.GeospatialLayerColorField.BuildercolorValuesFields(MeasureField... colorValuesFields)A list of color measure fields.-
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
-
colorDimensionsFields
GeospatialLayerColorField.Builder colorDimensionsFields(Collection<DimensionField> colorDimensionsFields)
A list of color dimension fields.
- Parameters:
colorDimensionsFields- A list of color dimension fields.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
colorDimensionsFields
GeospatialLayerColorField.Builder colorDimensionsFields(DimensionField... colorDimensionsFields)
A list of color dimension fields.
- Parameters:
colorDimensionsFields- A list of color dimension fields.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
colorDimensionsFields
GeospatialLayerColorField.Builder colorDimensionsFields(Consumer<DimensionField.Builder>... colorDimensionsFields)
A list of color dimension 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#colorDimensionsFields(List.) - Parameters:
colorDimensionsFields- 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:
#colorDimensionsFields(java.util.Collection)
-
colorValuesFields
GeospatialLayerColorField.Builder colorValuesFields(Collection<MeasureField> colorValuesFields)
A list of color measure fields.
- Parameters:
colorValuesFields- A list of color measure fields.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
colorValuesFields
GeospatialLayerColorField.Builder colorValuesFields(MeasureField... colorValuesFields)
A list of color measure fields.
- Parameters:
colorValuesFields- A list of color measure fields.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
colorValuesFields
GeospatialLayerColorField.Builder colorValuesFields(Consumer<MeasureField.Builder>... colorValuesFields)
A list of color measure 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#colorValuesFields(List.) - Parameters:
colorValuesFields- 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:
#colorValuesFields(java.util.Collection)
-
-