Interface Point.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Point.Builder,Point>,SdkBuilder<Point.Builder,Point>,SdkPojo
- Enclosing class:
- Point
public static interface Point.Builder extends SdkPojo, CopyableBuilder<Point.Builder,Point>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Point.Builderx(Float x)The value of the X coordinate for a point on aPolygon.Point.Buildery(Float y)The value of the Y coordinate for a point on aPolygon.-
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, sdkFields
-
-
-
-
Method Detail
-
x
Point.Builder x(Float x)
The value of the X coordinate for a point on a
Polygon.- Parameters:
x- The value of the X coordinate for a point on aPolygon.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
y
Point.Builder y(Float y)
The value of the Y coordinate for a point on a
Polygon.- Parameters:
y- The value of the Y coordinate for a point on aPolygon.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-