public class GeometryPolygon extends GeometryValue
A sequence of geometry multi-points which represents a polygon.
DEFAULT_SRID
Constructor and Description |
---|
GeometryPolygon()
Constructor
|
Modifier and Type | Method and Description |
---|---|
static GeometryPolygon |
castOptional(DataValue value)
For internal use only.
|
static GeometryPolygon |
castRequired(DataValue value)
For internal use only.
|
java.lang.String |
formatWKT()
See formatWKT(boolean).
|
java.lang.String |
formatWKT(boolean sridRequired)
Return this value formatted in OData WKT (well-known text) format.
|
PolygonCoordinates |
getCoordinates()
The coordinates of this value.
|
DataType |
getDataType()
Data type of the wrapped value.
|
static GeometryPolygon |
parse(java.lang.String text)
Return a value parsed from text in GeoJSON format.
|
static GeometryPolygon |
parseWKT(java.lang.String text)
|
static GeometryPolygon |
parseWKT(java.lang.String text,
boolean sridRequired)
Return a value parsed from OData WKT (well-known-text) format.
|
void |
setCoordinates(PolygonCoordinates value)
The coordinates of this value.
|
getSrsCode, getSrsName, parseAny, parseAnyWKT, parseAnyWKT, setSrsCode, setSrsName, toString, withLatitudeLongitude, withXY, withXYM, withXYZ, withXYZM
cloneMutable, equals, getTypeCode, hashCode
public static GeometryPolygon castOptional(DataValue value)
For internal use only.
public static GeometryPolygon castRequired(DataValue value)
For internal use only.
public java.lang.String formatWKT()
formatWKT
in class GeometryValue
public java.lang.String formatWKT(boolean sridRequired)
Return this value formatted in OData WKT (well-known text) format.
formatWKT
in class GeometryValue
sridRequired
- Is SRID prefix required?public PolygonCoordinates getCoordinates()
The coordinates of this value.
public DataType getDataType()
Data type of the wrapped value.
getDataType
in class DataValue
public static GeometryPolygon parse(java.lang.String text)
Return a value parsed from text in GeoJSON format.
text
- A value in GeoJSON format.public static GeometryPolygon parseWKT(java.lang.String text)
public static GeometryPolygon parseWKT(java.lang.String text, boolean sridRequired)
Return a value parsed from OData WKT (well-known-text) format.
text
- A value in OData WKT format.sridRequired
- Is SRID prefix required?public void setCoordinates(PolygonCoordinates value)
The coordinates of this value.