com.armatiek.infofuze.stream.filesystem.filefilter
Class AndFileFilter

java.lang.Object
  extended by com.armatiek.infofuze.stream.filesystem.filefilter.AndFileFilter
All Implemented Interfaces:
ConditionalFileFilter, IOFileFilter, java.io.Serializable

public class AndFileFilter
extends java.lang.Object
implements IOFileFilter, ConditionalFileFilter, java.io.Serializable

Filters files providing conditional AND logic across a list of file filters. This filter returns true if all filters in the list return true. Otherwise, it returns false. Checking of the file filter list stops when the first filter returns false. 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

See Also:
Serialized Form

Constructor Summary
AndFileFilter()
          Constructs a new instance of AndFileFilter.
AndFileFilter(IOFileFilter filter1, IOFileFilter filter2)
          Constructs a new file filter that ANDs the result of two other filters.
AndFileFilter(java.util.List<IOFileFilter> fileFilters)
          Constructs a new instance of AndFileFilter with the specified list of filters.
 
Method Summary
 boolean accept(FileIf file)
          Checks to see if the FileIf should be accepted by this filter.
 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.
 java.lang.String toString()
          Provide a String representaion of this file filter.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

AndFileFilter

public AndFileFilter()
Constructs a new instance of AndFileFilter.


AndFileFilter

public AndFileFilter(java.util.List<IOFileFilter> fileFilters)
Constructs a new instance of AndFileFilter with the specified list of filters.

Parameters:
fileFilters - a List of IOFileFilter instances, copied, null ignored

AndFileFilter

public AndFileFilter(IOFileFilter filter1,
                     IOFileFilter filter2)
Constructs a new file filter that ANDs the result of two other filters.

Parameters:
filter1 - the first filter, must not be null
filter2 - the second filter, must not be null
Throws:
java.lang.IllegalArgumentException - if either filter is null
Method Detail

addFileFilter

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

Specified by:
addFileFilter in interface ConditionalFileFilter
Parameters:
ioFileFilter - the filter to be added

getFileFilters

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

Specified by:
getFileFilters in interface ConditionalFileFilter
Returns:
the file filter list

removeFileFilter

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

Specified by:
removeFileFilter in interface ConditionalFileFilter
Parameters:
ioFileFilter - filter to be removed
Returns:
true if the filter was found in the list, false otherwise

setFileFilters

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

Specified by:
setFileFilters in interface ConditionalFileFilter
Parameters:
fileFilters - the list of filters

accept

public boolean accept(FileIf file)
Checks to see if the FileIf should be accepted by this filter.

Specified by:
accept in interface IOFileFilter
Parameters:
file - the FileIf to check
Returns:
true if this file matches the test

toString

public java.lang.String toString()
Provide a String representaion of this file filter.

Overrides:
toString in class java.lang.Object
Returns:
a String representaion