Interface DirectoryCleanerCallback
-
- All Known Implementing Classes:
AbstractDirectoryCleanerCallback
public interface DirectoryCleanerCallback
- Author:
- Eugene Petrenko Created: 19.06.2008 13:50:27
-
-
Field Summary
Fields Modifier and Type Field Description static DirectoryCleanerCallback
EMPTY
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
containsSkipItem(File f)
void
deleted(File f)
boolean
isInterrupted()
void
moved(File f)
void
noAccess(File f)
void
notExists(File f)
boolean
shouldDelete(File f)
-
-
-
Field Detail
-
EMPTY
static final DirectoryCleanerCallback EMPTY
-
-
Method Detail
-
moved
void moved(@NotNull File f)
-
deleted
void deleted(@NotNull File f)
-
noAccess
void noAccess(@NotNull File f)
-
notExists
void notExists(@NotNull File f)
-
isInterrupted
boolean isInterrupted()
-
shouldDelete
boolean shouldDelete(@NotNull File f)
-
containsSkipItem
boolean containsSkipItem(@NotNull File f)
-
-