Interface CoverageNameCollectorSPI
-
- All Known Implementing Classes:
ColorSpaceNameCollectorSPI
,DefaultCoverageNameCollectorSPI
,FileNameRegexNameCollectorSPI
public interface CoverageNameCollectorSPI
CoverageNameCollector SPI interface. Allows to instantiateCoverageNameCollector
s based on optional input source object and customization properties.Implementations are pluggable. In addition to implementing this interface, this service file should be defined:
META-INF/services/org.geotools.gce.imagemosaic.namecollector.CoverageNameCollectorSPI
The file should contain a single line which gives the full name of the implementing class.
example:
e.g. org.geotools.gce.imagemosaic.namecollector.DefaultCoverageNameCollectorSPI
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CoverageNameCollector
create(Object object, Map<String,String> properties)
Create aCoverageNameCollector
instance
-
-
-
Method Detail
-
create
CoverageNameCollector create(Object object, Map<String,String> properties)
Create aCoverageNameCollector
instance
-
-