@Deprecated
public class ShapeBuilders
extends java.lang.Object
ShapeBuilders.newMultiPoint use new MultiPointBuilder()| Constructor | Description |
|---|---|
ShapeBuilders() |
Deprecated.
|
| Modifier and Type | Method | Description |
|---|---|---|
static CircleBuilder |
newCircleBuilder() |
Deprecated.
create a new Circle
|
static EnvelopeBuilder |
newEnvelope(org.locationtech.jts.geom.Coordinate topLeft,
org.locationtech.jts.geom.Coordinate bottomRight) |
Deprecated.
create a new rectangle
|
static GeometryCollectionBuilder |
newGeometryCollection() |
Deprecated.
Create a new GeometryCollection
|
static LineStringBuilder |
newLineString(java.util.List<org.locationtech.jts.geom.Coordinate> list) |
Deprecated.
Create a new lineString
|
static LineStringBuilder |
newLineString(CoordinatesBuilder coordinates) |
Deprecated.
Create a new lineString
|
static MultiLineStringBuilder |
newMultiLinestring() |
Deprecated.
Create a new Collection of lineStrings
|
static MultiPointBuilder |
newMultiPoint(java.util.List<org.locationtech.jts.geom.Coordinate> points) |
Deprecated.
Create a new set of points
|
static MultiPolygonBuilder |
newMultiPolygon() |
Deprecated.
Create a new Collection of polygons
|
static MultiPolygonBuilder |
newMultiPolygon(ShapeBuilder.Orientation orientation) |
Deprecated.
Create a new Collection of polygons
|
static PointBuilder |
newPoint(double longitude,
double latitude) |
Deprecated.
Create a new point
|
static PointBuilder |
newPoint(org.locationtech.jts.geom.Coordinate coordinate) |
Deprecated.
Create a new
PointBuilder from a Coordinate |
static PolygonBuilder |
newPolygon(java.util.List<org.locationtech.jts.geom.Coordinate> shell) |
Deprecated.
Create a new PolygonBuilder
|
static PolygonBuilder |
newPolygon(CoordinatesBuilder shell) |
Deprecated.
Create a new PolygonBuilder
|
public static PointBuilder newPoint(double longitude, double latitude)
longitude - longitude of the pointlatitude - latitude of the pointPointBuilderpublic static PointBuilder newPoint(org.locationtech.jts.geom.Coordinate coordinate)
PointBuilder from a Coordinatecoordinate - coordinate defining the position of the pointPointBuilderpublic static MultiPointBuilder newMultiPoint(java.util.List<org.locationtech.jts.geom.Coordinate> points)
MultiPointBuilderpublic static LineStringBuilder newLineString(java.util.List<org.locationtech.jts.geom.Coordinate> list)
LineStringBuilderpublic static LineStringBuilder newLineString(CoordinatesBuilder coordinates)
LineStringBuilderpublic static MultiLineStringBuilder newMultiLinestring()
MultiLineStringBuilderpublic static PolygonBuilder newPolygon(java.util.List<org.locationtech.jts.geom.Coordinate> shell)
PolygonBuilderpublic static PolygonBuilder newPolygon(CoordinatesBuilder shell)
PolygonBuilderpublic static MultiPolygonBuilder newMultiPolygon()
MultiPolygonBuilderpublic static MultiPolygonBuilder newMultiPolygon(ShapeBuilder.Orientation orientation)
MultiPolygonBuilderpublic static GeometryCollectionBuilder newGeometryCollection()
GeometryCollectionBuilderpublic static CircleBuilder newCircleBuilder()
CircleBuilderpublic static EnvelopeBuilder newEnvelope(org.locationtech.jts.geom.Coordinate topLeft, org.locationtech.jts.geom.Coordinate bottomRight)
EnvelopeBuilder