Package org.geotools.coverage.grid.io
Class FileSystemFileSetManager
- Object
-
- FileSystemFileSetManager
-
- All Implemented Interfaces:
FileSetManager
public class FileSystemFileSetManager extends Object implements FileSetManager
-
-
Constructor Summary
Constructors Constructor Description FileSystemFileSetManager()
-
Method Summary
All Methods Instance Methods Concrete 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
public void addFile(String filePath)
Description copied from interface:FileSetManagerAdd a file to the file set manager- Specified by:
addFilein interfaceFileSetManager
-
list
public List<String> list()
Description copied from interface:FileSetManagerReturn the list of all the files currently added to the manager- Specified by:
listin interfaceFileSetManager
-
removeFile
public void removeFile(String filePath)
Description copied from interface:FileSetManagerRemove a file from the manager (An implementation may also physically remove the file)- Specified by:
removeFilein interfaceFileSetManager
-
purge
public void purge()
Description copied from interface:FileSetManagerRemove all the files from the manager (An implementation may also physically remove all the files)- Specified by:
purgein interfaceFileSetManager
-
-