Package org.locationtech.spatial4j.shape
Interface ShapeFactory.PointsBuilder<T>
-
- All Known Subinterfaces:
ShapeFactory.LineStringBuilder,ShapeFactory.MultiPointBuilder,ShapeFactory.PolygonBuilder,ShapeFactory.PolygonBuilder.HoleBuilder
- All Known Implementing Classes:
JtsShapeFactory.JtsLineStringBuilder,JtsShapeFactory.JtsMultiPointBuilder,JtsShapeFactory.JtsMultiShapeBuilder,JtsShapeFactory.JtsPolygonBuilder,JtsShapeFactory.JtsPolygonBuilder.JtsHoleBuilder,OnePointsBuilder,ShapeFactoryImpl.GeneralShapeMultiShapeBuilder
- Enclosing interface:
- ShapeFactory
public static interface ShapeFactory.PointsBuilder<T>Builds a point and returns the generic specified type (usually whatever "this" is).
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default TpointLatLon(double latitude, double longitude)TpointXY(double x, double y)TpointXYZ(double x, double y, double z)
-
-
-
Method Detail
-
pointXY
T pointXY(double x, double y)
- See Also:
ShapeFactory.pointXY(double, double)
-
pointXYZ
T pointXYZ(double x, double y, double z)
-
pointLatLon
default T pointLatLon(double latitude, double longitude)
- See Also:
ShapeFactory.pointLatLon(double, double)
-
-