Package org.bremersee.geojson.model
Class GeometryCollection
- java.lang.Object
-
- org.bremersee.geojson.model.Geometry
-
- org.bremersee.geojson.model.GeometryCollection
-
- All Implemented Interfaces:
Serializable
@Validated public class GeometryCollection extends Geometry implements Serializable
GeoJSON GeometryCollection.- Author:
- Christian Bremer
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.bremersee.geojson.model.Geometry
Geometry.TypeEnum
-
-
Constructor Summary
Constructors Constructor Description GeometryCollection()
Instantiates a new geometry collection.GeometryCollection(BoundingBox bbox, List<Geometry> geometries)
Instantiates a new geometry collection.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<Geometry>
getGeometries()
Get geometries.void
setGeometries(List<Geometry> geometries)
Sets geometries.
-
-
-
Constructor Detail
-
GeometryCollection
public GeometryCollection()
Instantiates a new geometry collection.
-
GeometryCollection
public GeometryCollection(BoundingBox bbox, List<Geometry> geometries)
Instantiates a new geometry collection.- Parameters:
bbox
- the bboxgeometries
- the geometries
-
-