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 void
addFile(String filePath)
Add a file to the file set managerList<String>
list()
Return the list of all the files currently added to the managervoid
purge()
Remove all the files from the manager (An implementation may also physically remove all the files)void
removeFile(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:FileSetManager
Add a file to the file set manager- Specified by:
addFile
in interfaceFileSetManager
-
list
public List<String> list()
Description copied from interface:FileSetManager
Return the list of all the files currently added to the manager- Specified by:
list
in interfaceFileSetManager
-
removeFile
public void removeFile(String filePath)
Description copied from interface:FileSetManager
Remove a file from the manager (An implementation may also physically remove the file)- Specified by:
removeFile
in interfaceFileSetManager
-
purge
public void purge()
Description copied from interface:FileSetManager
Remove all the files from the manager (An implementation may also physically remove all the files)- Specified by:
purge
in interfaceFileSetManager
-
-