Package org.locationtech.jts.geom
Interface GeometryFilter
-
- All Known Implementing Classes:
ConnectedElementLocationFilter,GeometryExtracter,PointExtracter,PolygonExtracter
public interface GeometryFilterGeometryCollectionclasses support the concept of applying aGeometryFilterto theGeometry. The filter is applied to every elementGeometry. AGeometryFiltercan either record information about theGeometryor change theGeometryin some way.GeometryFilteris an example of the Gang-of-Four Visitor pattern.- Version:
- 1.7
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidfilter(Geometry geom)Performs an operation with or ongeom.
-
-
-
Method Detail
-
filter
void filter(Geometry geom)
Performs an operation with or ongeom.- Parameters:
geom- aGeometryto which the filter is applied.
-
-