See: Description
| Interface | Description |
|---|---|
| DiscardAwareFileListFilter<F> |
The
FileListFilter modification which can accept a Consumer
which can be called when the filter discards the file. |
| FileListFilter<F> |
Strategy interface for filtering a group of files.
|
| ResettableFileListFilter<F> |
A
FileListFilter that can be reset by removing a specific file from its
state. |
| ReversibleFileListFilter<F> |
A
FileListFilter that allows the caller to reverse (roll back) state
changes. |
| Class | Description |
|---|---|
| AbstractDirectoryAwareFileListFilter<F> |
A file list filter that can be configured to always accept (pass) directories.
|
| AbstractFileListFilter<F> |
A convenience base class for any
FileListFilter whose criteria can be
evaluated against each File in isolation. |
| AbstractMarkerFilePresentFileListFilter<F> |
A FileListFilter that only passes files matched by one or more
FileListFilter
if a corresponding marker file is also present to indicate a file transfer is complete. |
| AbstractPersistentAcceptOnceFileListFilter<F> |
Stores "seen" files in a MetadataStore to survive application restarts.
|
| AbstractRegexPatternFileListFilter<F> |
Filters a listing of files by qualifying their 'name'
against a regular expression (an instance of
Pattern) |
| AbstractSimplePatternFileListFilter<F> |
Base class for filters that support ant style path expressions, which are less powerful
but more readable than regular expressions.
|
| AcceptAllFileListFilter<F> |
Simple implementation of
FileListFilter that always returns true. |
| AcceptOnceFileListFilter<F> |
FileListFilter that passes files only one time. |
| ChainFileListFilter<F> |
The
CompositeFileListFilter extension which chains the result
of the previous filter to the next one. |
| CompositeFileListFilter<F> |
Simple
FileListFilter that predicates its matches against all of the
configured FileListFilter. |
| ExpressionFileListFilter<F> |
A SpEL expression based
AbstractFileListFilter implementation. |
| FileSystemMarkerFilePresentFileListFilter |
File system implementation of
AbstractMarkerFilePresentFileListFilter. |
| FileSystemPersistentAcceptOnceFileListFilter | |
| IgnoreHiddenFileListFilter |
FileListFilter implementation that ignores any hidden files. |
| LastModifiedFileListFilter |
The
FileListFilter implementation to filter those files which
File.lastModified() is less than the LastModifiedFileListFilter.age in comparison
with the current time. |
| RegexPatternFileListFilter |
Implementation of AbstractRegexPatternMatchingFileListFilter for java.io.File instances.
|
| SimplePatternFileListFilter |
Filter that supports ant style path expressions, which are less powerful but more readable than regular expressions.
|