Interface GeospatialColor.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<GeospatialColor.Builder,GeospatialColor>,SdkBuilder<GeospatialColor.Builder,GeospatialColor>,SdkPojo
- Enclosing class:
- GeospatialColor
@Mutable @NotThreadSafe public static interface GeospatialColor.Builder extends SdkPojo, CopyableBuilder<GeospatialColor.Builder,GeospatialColor>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default GeospatialColor.Buildercategorical(Consumer<GeospatialCategoricalColor.Builder> categorical)The visualization properties for the categorical color.GeospatialColor.Buildercategorical(GeospatialCategoricalColor categorical)The visualization properties for the categorical color.default GeospatialColor.Buildergradient(Consumer<GeospatialGradientColor.Builder> gradient)The visualization properties for the gradient color.GeospatialColor.Buildergradient(GeospatialGradientColor gradient)The visualization properties for the gradient color.default GeospatialColor.Buildersolid(Consumer<GeospatialSolidColor.Builder> solid)The visualization properties for the solid color.GeospatialColor.Buildersolid(GeospatialSolidColor solid)The visualization properties for the solid color.-
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
-
solid
GeospatialColor.Builder solid(GeospatialSolidColor solid)
The visualization properties for the solid color.
- Parameters:
solid- The visualization properties for the solid color.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
solid
default GeospatialColor.Builder solid(Consumer<GeospatialSolidColor.Builder> solid)
The visualization properties for the solid color.
This is a convenience method that creates an instance of theGeospatialSolidColor.Builderavoiding the need to create one manually viaGeospatialSolidColor.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tosolid(GeospatialSolidColor).- Parameters:
solid- a consumer that will call methods onGeospatialSolidColor.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
solid(GeospatialSolidColor)
-
gradient
GeospatialColor.Builder gradient(GeospatialGradientColor gradient)
The visualization properties for the gradient color.
- Parameters:
gradient- The visualization properties for the gradient color.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
gradient
default GeospatialColor.Builder gradient(Consumer<GeospatialGradientColor.Builder> gradient)
The visualization properties for the gradient color.
This is a convenience method that creates an instance of theGeospatialGradientColor.Builderavoiding the need to create one manually viaGeospatialGradientColor.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed togradient(GeospatialGradientColor).- Parameters:
gradient- a consumer that will call methods onGeospatialGradientColor.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
gradient(GeospatialGradientColor)
-
categorical
GeospatialColor.Builder categorical(GeospatialCategoricalColor categorical)
The visualization properties for the categorical color.
- Parameters:
categorical- The visualization properties for the categorical color.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
categorical
default GeospatialColor.Builder categorical(Consumer<GeospatialCategoricalColor.Builder> categorical)
The visualization properties for the categorical color.
This is a convenience method that creates an instance of theGeospatialCategoricalColor.Builderavoiding the need to create one manually viaGeospatialCategoricalColor.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tocategorical(GeospatialCategoricalColor).- Parameters:
categorical- a consumer that will call methods onGeospatialCategoricalColor.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
categorical(GeospatialCategoricalColor)
-
-