Package org.apache.commons.io.filefilter
Class OrFileFilter
- java.lang.Object
-
- org.apache.commons.io.filefilter.AbstractFileFilter
-
- org.apache.commons.io.filefilter.OrFileFilter
-
- All Implemented Interfaces:
java.io.FileFilter,java.io.FilenameFilter,java.io.Serializable,ConditionalFileFilter,IOFileFilter
public class OrFileFilter extends AbstractFileFilter implements ConditionalFileFilter, java.io.Serializable
AFileFilterproviding conditional OR logic across a list of file filters. This filter returnstrueif any filters in the list returntrue. Otherwise, it returnsfalse. Checking of the file filter list stops when the first filter returnstrue.- Since:
- 1.0
- See Also:
FileFilterUtils.or(IOFileFilter...), Serialized Form
-
-
Field Summary
-
Fields inherited from interface org.apache.commons.io.filefilter.IOFileFilter
EMPTY_STRING_ARRAY
-
-
Constructor Summary
Constructors Constructor Description OrFileFilter()Constructs a new instance ofOrFileFilter.OrFileFilter(java.util.List<IOFileFilter> fileFilters)Constructs a new instance ofOrFileFilterwith the specified filters.OrFileFilter(IOFileFilter filter1, IOFileFilter filter2)Constructs a new file filter that ORs the result of two other filters.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanaccept(java.io.File file)Checks to see if the File should be accepted by this filter.booleanaccept(java.io.File file, java.lang.String name)Checks to see if the File should be accepted by this filter.voidaddFileFilter(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.booleanremoveFileFilter(IOFileFilter ioFileFilter)Removes the specified file filter.voidsetFileFilters(java.util.List<IOFileFilter> fileFilters)Sets the list of file filters, replacing any previously configured file filters on this filter.java.lang.StringtoString()Provide a String representation of this file filter.
-
-
-
Constructor Detail
-
OrFileFilter
public OrFileFilter()
Constructs a new instance ofOrFileFilter.- Since:
- 1.1
-
OrFileFilter
public OrFileFilter(java.util.List<IOFileFilter> fileFilters)
Constructs a new instance ofOrFileFilterwith the specified filters.- Parameters:
fileFilters- the file filters for this filter, copied, null ignored- Since:
- 1.1
-
OrFileFilter
public OrFileFilter(IOFileFilter filter1, IOFileFilter filter2)
Constructs a new file filter that ORs the result of two other filters.- Parameters:
filter1- the first filter, must not be nullfilter2- 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:
addFileFilterin interfaceConditionalFileFilter- 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:
getFileFiltersin interfaceConditionalFileFilter- Returns:
- the file filter list
-
removeFileFilter
public boolean removeFileFilter(IOFileFilter ioFileFilter)
Removes the specified file filter.- Specified by:
removeFileFilterin interfaceConditionalFileFilter- Parameters:
ioFileFilter- filter to be removed- Returns:
trueif the filter was found in the list,falseotherwise
-
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:
setFileFiltersin interfaceConditionalFileFilter- Parameters:
fileFilters- the list of filters
-
accept
public boolean accept(java.io.File file)
Checks to see if the File should be accepted by this filter.- Specified by:
acceptin interfacejava.io.FileFilter- Specified by:
acceptin interfaceIOFileFilter- Overrides:
acceptin classAbstractFileFilter- Parameters:
file- the File to check- Returns:
- true if this file matches the test
-
accept
public boolean accept(java.io.File file, java.lang.String name)Checks to see if the File should be accepted by this filter.- Specified by:
acceptin interfacejava.io.FilenameFilter- Specified by:
acceptin interfaceIOFileFilter- Overrides:
acceptin classAbstractFileFilter- Parameters:
file- the directory File to checkname- the file name within the directory to check- Returns:
- true if this file matches the test
-
toString
public java.lang.String toString()
Provide a String representation of this file filter.- Overrides:
toStringin classAbstractFileFilter- Returns:
- a String representation
-
-