Package com.mongodb.client.model.geojson
Class MultiPolygon
- java.lang.Object
-
- com.mongodb.client.model.geojson.Geometry
-
- com.mongodb.client.model.geojson.MultiPolygon
-
public final class MultiPolygon extends Geometry
A representation of a GeoJSON MultiPolygon.- Since:
- 3.1
-
-
Constructor Summary
Constructors Constructor Description MultiPolygon(CoordinateReferenceSystem coordinateReferenceSystem, java.util.List<PolygonCoordinates> coordinates)
Construct an instance.MultiPolygon(java.util.List<PolygonCoordinates> coordinates)
Construct an instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object o)
java.util.List<PolygonCoordinates>
getCoordinates()
Gets the coordinates.GeoJsonObjectType
getType()
Gets the GeoJSON object type.int
hashCode()
java.lang.String
toString()
-
Methods inherited from class com.mongodb.client.model.geojson.Geometry
getCoordinateReferenceSystem, toJson
-
-
-
-
Constructor Detail
-
MultiPolygon
public MultiPolygon(java.util.List<PolygonCoordinates> coordinates)
Construct an instance.- Parameters:
coordinates
- the coordinates
-
MultiPolygon
public MultiPolygon(@Nullable CoordinateReferenceSystem coordinateReferenceSystem, java.util.List<PolygonCoordinates> coordinates)
Construct an instance.- Parameters:
coordinateReferenceSystem
- the coordinate reference systemcoordinates
- the coordinates
-
-
Method Detail
-
getType
public GeoJsonObjectType getType()
Description copied from class:Geometry
Gets the GeoJSON object type.
-
getCoordinates
public java.util.List<PolygonCoordinates> getCoordinates()
Gets the coordinates.- Returns:
- the coordinates
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-