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.

@FunctionalInterface public static interface ShapefileProcessor.FeatureProcessor
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 Type
    Method
    Description
    void
    processFeature(org.geotools.api.feature.Feature feature)
    Processes the given org.opengis.feature.Feature in some way.
  • Method Details

    • processFeature

      void processFeature(org.geotools.api.feature.Feature feature)
      Processes the given org.opengis.feature.Feature in some way.
      Parameters:
      feature - the Feature to process