Interface GranuleCatalogVisitor
-
public interface GranuleCatalogVisitorSimple interface for creating visitors to aGranuleCatalogimplementation.- Author:
- Simone Giannecchini, GeoSolutions SAS
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default booleanisVisitComplete()Returns true if the visit has been completed and there is no more need to scan though the other granulesvoidvisit(GranuleDescriptor granule, SimpleFeature feature)Method that can be used to perform a visit to aGranuleCatalog.
-
-
-
Method Detail
-
visit
void visit(GranuleDescriptor granule, SimpleFeature feature)
Method that can be used to perform a visit to aGranuleCatalog.- Parameters:
granule- theGranuleDescriptorwe are visitingfeature- the feature the granule was created from
-
isVisitComplete
default boolean isVisitComplete()
Returns true if the visit has been completed and there is no more need to scan though the other granules
-
-