Package com.reallifedeveloper.tools.gis
Interface ShapefileProcessor.FeatureProcessor
- Enclosing class:
- ShapefileProcessor
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Defines some kind of processing av an
org.opengis.feature.Feature
. A Feature
represents a composite object in a
shapefile that contains both a geographical or geometrical object and also other attributes.-
Method Summary
Modifier and TypeMethodDescriptionvoid
processFeature
(org.geotools.api.feature.Feature feature) Processes the givenorg.opengis.feature.Feature
in some way.
-
Method Details
-
processFeature
void processFeature(org.geotools.api.feature.Feature feature) Processes the givenorg.opengis.feature.Feature
in some way.- Parameters:
feature
- theFeature
to process
-