Interface IsolineAvoidanceArea.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<IsolineAvoidanceArea.Builder,
,IsolineAvoidanceArea> SdkBuilder<IsolineAvoidanceArea.Builder,
,IsolineAvoidanceArea> SdkPojo
- Enclosing class:
IsolineAvoidanceArea
@Mutable
@NotThreadSafe
public static interface IsolineAvoidanceArea.Builder
extends SdkPojo, CopyableBuilder<IsolineAvoidanceArea.Builder,IsolineAvoidanceArea>
-
Method Summary
Modifier and TypeMethodDescriptionexcept
(Collection<IsolineAvoidanceAreaGeometry> except) Exceptions to the provided avoidance geometry, to be included while calculating an isoline.except
(Consumer<IsolineAvoidanceAreaGeometry.Builder>... except) Exceptions to the provided avoidance geometry, to be included while calculating an isoline.except
(IsolineAvoidanceAreaGeometry... except) Exceptions to the provided avoidance geometry, to be included while calculating an isoline.default IsolineAvoidanceArea.Builder
geometry
(Consumer<IsolineAvoidanceAreaGeometry.Builder> geometry) Geometry of the area to be avoided.geometry
(IsolineAvoidanceAreaGeometry geometry) Geometry of the area to be avoided.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 Details
-
except
Exceptions to the provided avoidance geometry, to be included while calculating an isoline.
- Parameters:
except
- Exceptions to the provided avoidance geometry, to be included while calculating an isoline.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
except
Exceptions to the provided avoidance geometry, to be included while calculating an isoline.
- Parameters:
except
- Exceptions to the provided avoidance geometry, to be included while calculating an isoline.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
except
Exceptions to the provided avoidance geometry, to be included while calculating an isoline.
This is a convenience method that creates an instance of theIsolineAvoidanceAreaGeometry.Builder
avoiding the need to create one manually viaIsolineAvoidanceAreaGeometry.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toexcept(List<IsolineAvoidanceAreaGeometry>)
.- Parameters:
except
- a consumer that will call methods onIsolineAvoidanceAreaGeometry.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
geometry
Geometry of the area to be avoided.
- Parameters:
geometry
- Geometry of the area to be avoided.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
geometry
default IsolineAvoidanceArea.Builder geometry(Consumer<IsolineAvoidanceAreaGeometry.Builder> geometry) Geometry of the area to be avoided.
This is a convenience method that creates an instance of theIsolineAvoidanceAreaGeometry.Builder
avoiding the need to create one manually viaIsolineAvoidanceAreaGeometry.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed togeometry(IsolineAvoidanceAreaGeometry)
.- Parameters:
geometry
- a consumer that will call methods onIsolineAvoidanceAreaGeometry.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-