Package org.springframework.integration.file.entries

Interface Summary
EntryListFilter<T> Strategy interface for filtering entries representing files on a local or remote file system.
EntryNamer<T> Responsible for coercing a String identification out of the T entry.
 

Class Summary
AbstractEntryListFilter<T> A convenience base class for any EntryListFilter whose criteria can be evaluated against each File in isolation.
AcceptAllEntryListFilter<T> Simple NOOP implementation for EntryListFilter implementation.
AcceptOnceEntryFileListFilter<T> EntryListFilter that passes files only one time.
CompositeEntryListFilter<T> Simple EntryListFilter that predicates its matches against any of many configured EntryListFilter
FileEntryNamer File implementation of the EntryNamer strategy.
PatternMatchingEntryListFilter<T> Filters a listing of entries (T) by qualifying their 'name' (as determined by EntryNamer) against a regular expression (an instance of Pattern)
SingleEntryAdaptingEntryListFilter<T> this simply takes an EntryListFilter and produces an object that can field just one argument instea of an array