com.armatiek.infofuze.stream.filesystem.filefilter
Interface ConditionalFileFilter

All Known Implementing Classes:
AndFileFilter, OrFileFilter

public interface ConditionalFileFilter

Defines operations for conditional file filters. Based on code from Apache Commons IO version 2.01. The main difference is that this class filters objects that implement FileIf, not File. Original author Steven Caswell


Method Summary
 void addFileFilter(IOFileFilter ioFileFilter)
          Adds the specified file filter to the list of file filters at the end of the list.
 java.util.List<IOFileFilter> getFileFilters()
          Returns this conditional file filter's list of file filters.
 boolean removeFileFilter(IOFileFilter ioFileFilter)
          Removes the specified file filter.
 void setFileFilters(java.util.List<IOFileFilter> fileFilters)
          Sets the list of file filters, replacing any previously configured file filters on this filter.
 

Method Detail

addFileFilter

void addFileFilter(IOFileFilter ioFileFilter)
Adds the specified file filter to the list of file filters at the end of the list.

Parameters:
ioFileFilter - the filter to be added

getFileFilters

java.util.List<IOFileFilter> getFileFilters()
Returns this conditional file filter's list of file filters.

Returns:
the file filter list

removeFileFilter

boolean removeFileFilter(IOFileFilter ioFileFilter)
Removes the specified file filter.

Parameters:
ioFileFilter - filter to be removed
Returns:
true if the filter was found in the list, false otherwise

setFileFilters

void setFileFilters(java.util.List<IOFileFilter> fileFilters)
Sets the list of file filters, replacing any previously configured file filters on this filter.

Parameters:
fileFilters - the list of filters