FileDocCategorySizeDatePackage
ConditionalFileFilter.javaAPI DocAndroid 1.5 API2207Wed May 06 22:42:46 BST 2009org.apache.commons.io.filefilter

ConditionalFileFilter

public interface ConditionalFileFilter
Defines operations for conditional file filters.
since
Commons IO 1.1
version
$Revision: 437567 $ $Date: 2006-08-28 07:39:07 +0100 (Mon, 28 Aug 2006) $
author
Steven Caswell

Fields Summary
Constructors Summary
Methods Summary
public voidaddFileFilter(org.apache.commons.io.filefilter.IOFileFilter ioFileFilter)
Adds the specified file filter to the list of file filters at the end of the list.

param
ioFileFilter the filter to be added
since
Commons IO 1.1

public java.util.ListgetFileFilters()
Returns this conditional file filter's list of file filters.

return
the file filter list
since
Commons IO 1.1

public booleanremoveFileFilter(org.apache.commons.io.filefilter.IOFileFilter ioFileFilter)
Removes the specified file filter.

param
ioFileFilter filter to be removed
return
true if the filter was found in the list, false otherwise
since
Commons IO 1.1

public voidsetFileFilters(java.util.List fileFilters)
Sets the list of file filters, replacing any previously configured file filters on this filter.

param
fileFilters the list of filters
since
Commons IO 1.1