Interface GeospatialPolygonStyle.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<GeospatialPolygonStyle.Builder,GeospatialPolygonStyle>,SdkBuilder<GeospatialPolygonStyle.Builder,GeospatialPolygonStyle>,SdkPojo
- Enclosing class:
- GeospatialPolygonStyle
@Mutable @NotThreadSafe public static interface GeospatialPolygonStyle.Builder extends SdkPojo, CopyableBuilder<GeospatialPolygonStyle.Builder,GeospatialPolygonStyle>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default GeospatialPolygonStyle.BuilderpolygonSymbolStyle(Consumer<GeospatialPolygonSymbolStyle.Builder> polygonSymbolStyle)The polygon symbol style for a polygon layer.GeospatialPolygonStyle.BuilderpolygonSymbolStyle(GeospatialPolygonSymbolStyle polygonSymbolStyle)The polygon symbol style for a polygon layer.-
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
-
polygonSymbolStyle
GeospatialPolygonStyle.Builder polygonSymbolStyle(GeospatialPolygonSymbolStyle polygonSymbolStyle)
The polygon symbol style for a polygon layer.
- Parameters:
polygonSymbolStyle- The polygon symbol style for a polygon layer.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
polygonSymbolStyle
default GeospatialPolygonStyle.Builder polygonSymbolStyle(Consumer<GeospatialPolygonSymbolStyle.Builder> polygonSymbolStyle)
The polygon symbol style for a polygon layer.
This is a convenience method that creates an instance of theGeospatialPolygonSymbolStyle.Builderavoiding the need to create one manually viaGeospatialPolygonSymbolStyle.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed topolygonSymbolStyle(GeospatialPolygonSymbolStyle).- Parameters:
polygonSymbolStyle- a consumer that will call methods onGeospatialPolygonSymbolStyle.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
polygonSymbolStyle(GeospatialPolygonSymbolStyle)
-
-