Interface GranuleCatalogVisitor
-
public interface GranuleCatalogVisitor
Simple interface for creating visitors to aGranuleCatalog
implementation.- Author:
- Simone Giannecchini, GeoSolutions SAS
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default boolean
isVisitComplete()
Returns true if the visit has been completed and there is no more need to scan though the other granulesvoid
visit(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
- theGranuleDescriptor
we 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
-
-