Package org.geotools.coverage.grid.io
Interface FileSetManager
-
- All Known Implementing Classes:
AncillaryFileManager,FileSystemFileSetManager,GeoSpatialImageReader,NetCDFAccess,NetCDFImageReader
public interface FileSetManager- Author:
- Daniele Romagnoli, GeoSolutions SaS
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddFile(String filePath)Add a file to the file set managerList<String>list()Return the list of all the files currently added to the managervoidpurge()Remove all the files from the manager (An implementation may also physically remove all the files)voidremoveFile(String filePath)Remove a file from the manager (An implementation may also physically remove the file)
-
-
-
Method Detail
-
addFile
void addFile(String filePath)
Add a file to the file set manager
-
removeFile
void removeFile(String filePath)
Remove a file from the manager (An implementation may also physically remove the file)
-
purge
void purge()
Remove all the files from the manager (An implementation may also physically remove all the files)
-
-