Interface Coordinates.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Coordinates.Builder,Coordinates>,SdkBuilder<Coordinates.Builder,Coordinates>,SdkPojo
- Enclosing class:
- Coordinates
@Mutable @NotThreadSafe public static interface Coordinates.Builder extends SdkPojo, CopyableBuilder<Coordinates.Builder,Coordinates>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Coordinates.Builderlatitude(String latitude)Specifies a coordinate of the north–south position of a geographic point on the surface of the Earth (-90 - 90).Coordinates.Builderlongitude(String longitude)Specifies a coordinate of the east–west position of a geographic point on the surface of the Earth (-180 - 180).-
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
-
latitude
Coordinates.Builder latitude(String latitude)
Specifies a coordinate of the north–south position of a geographic point on the surface of the Earth (-90 - 90).
- Parameters:
latitude- Specifies a coordinate of the north–south position of a geographic point on the surface of the Earth (-90 - 90).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
longitude
Coordinates.Builder longitude(String longitude)
Specifies a coordinate of the east–west position of a geographic point on the surface of the Earth (-180 - 180).
- Parameters:
longitude- Specifies a coordinate of the east–west position of a geographic point on the surface of the Earth (-180 - 180).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-