org.apache.commons.io.filefilter
public interface ConditionalFileFilter
Since: Commons IO 1.1
Version: $Revision: 437567 $ $Date: 2006-08-28 07:39:07 +0100 (Mon, 28 Aug 2006) $
Method Summary | |
---|---|
void | addFileFilter(IOFileFilter ioFileFilter)
Adds the specified file filter to the list of file filters at the end of
the list.
|
List | getFileFilters()
Returns this conditional file filter's list of file filters.
|
boolean | removeFileFilter(IOFileFilter ioFileFilter)
Removes the specified file filter.
|
void | setFileFilters(List fileFilters)
Sets the list of file filters, replacing any previously configured
file filters on this filter.
|
Parameters: ioFileFilter the filter to be added
Since: Commons IO 1.1
Returns: the file filter list
Since: Commons IO 1.1
Parameters: ioFileFilter filter to be removed
Returns: true
if the filter was found in the list,
false
otherwise
Since: Commons IO 1.1
Parameters: fileFilters the list of filters
Since: Commons IO 1.1