Spring Integration

Package org.springframework.integration.file.filters

Provides classes supporting file filtering.

See:
          Description

Interface Summary
FileListFilter<F> Strategy interface for filtering a group of files.
 

Class Summary
AbstractFileListFilter<F> A convenience base class for any FileListFilter whose criteria can be evaluated against each File in isolation.
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.
CompositeFileListFilter<F> Simple FileListFilter that predicates its matches against any of many configured FileListFilter.
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.
 

Package org.springframework.integration.file.filters Description

Provides classes supporting file filtering.


Spring Integration