Package org.locationtech.jts.geom
Interface GeometryFilter
-
- All Known Implementing Classes:
ConnectedElementLocationFilter
,ConnectedElementPointFilter
,GeometryExtracter
,LineStringExtracter
,PointExtracter
,PolygonExtracter
public interface GeometryFilter
GeometryCollection
classes support the concept of applying aGeometryFilter
to theGeometry
. The filter is applied to every elementGeometry
. AGeometryFilter
can either record information about theGeometry
or change theGeometry
in some way.GeometryFilter
is 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 void
filter(Geometry geom)
Performs an operation with or ongeom
.
-
-
-
Method Detail
-
filter
void filter(Geometry geom)
Performs an operation with or ongeom
.- Parameters:
geom
- aGeometry
to which the filter is applied.
-
-