Package org.opengis.geometry.aggregate
Interface Aggregate
-
- All Superinterfaces:
Geometry
,TransfiniteSet
- All Known Subinterfaces:
MultiCurve
,MultiPoint
,MultiPrimitive
,MultiSurface
@UML(identifier="GM_Aggregate", specification=ISO_19107) public interface Aggregate extends Geometry
Geometry that is an aggregate of other geometries.- Since:
- GeoAPI 1.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Set<? extends Geometry>
getElements()
Returns the set containing the elements that compose this aggregate.-
Methods inherited from interface Geometry
clone, distance, getBoundary, getBuffer, getCentroid, getClosure, getConvexHull, getCoordinateDimension, getCoordinateReferenceSystem, getDimension, getEnvelope, getMaximalComplex, getMbRegion, getPrecision, getRepresentativePoint, isCycle, isMutable, isSimple, toImmutable, transform, transform
-
Methods inherited from interface TransfiniteSet
contains, contains, difference, equals, intersection, intersects, symmetricDifference, union
-
-
-
-
Method Detail
-
getElements
@UML(identifier="element", obligation=MANDATORY, specification=ISO_19107) Set<? extends Geometry> getElements()
Returns the set containing the elements that compose this aggregate. The set may be modified if this geometry is mutable.- Returns:
- The set containing the elements that compose this aggregate.
-
-