public class AndFileFilter extends AbstractFileFilter implements ConditionalFileFilter, java.io.Serializable
FileFilter
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
.FileFilterUtils.and(IOFileFilter...)
,
Serialized FormConstructor and Description |
---|
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. |
Modifier and Type | Method and Description |
---|---|
boolean |
accept(java.io.File file)
Checks to see if the File should be accepted by this filter.
|
boolean |
accept(java.io.File file,
java.lang.String name)
Checks to see if the File 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 representation of this file filter.
|
public AndFileFilter()
AndFileFilter
.public AndFileFilter(java.util.List<IOFileFilter> fileFilters)
AndFileFilter
with the specified list of filters.fileFilters
- a List of IOFileFilter instances, copied, null ignoredpublic AndFileFilter(IOFileFilter filter1, IOFileFilter filter2)
filter1
- the first filter, must not be nullfilter2
- the second filter, must not be nulljava.lang.IllegalArgumentException
- if either filter is nullpublic void addFileFilter(IOFileFilter ioFileFilter)
addFileFilter
in interface ConditionalFileFilter
ioFileFilter
- the filter to be addedpublic java.util.List<IOFileFilter> getFileFilters()
getFileFilters
in interface ConditionalFileFilter
public boolean removeFileFilter(IOFileFilter ioFileFilter)
removeFileFilter
in interface ConditionalFileFilter
ioFileFilter
- filter to be removedtrue
if the filter was found in the list,
false
otherwisepublic void setFileFilters(java.util.List<IOFileFilter> fileFilters)
setFileFilters
in interface ConditionalFileFilter
fileFilters
- the list of filterspublic boolean accept(java.io.File file)
accept
in interface java.io.FileFilter
accept
in interface IOFileFilter
accept
in class AbstractFileFilter
file
- the File to checkpublic boolean accept(java.io.File file, java.lang.String name)
accept
in interface java.io.FilenameFilter
accept
in interface IOFileFilter
accept
in class AbstractFileFilter
file
- the directory File to checkname
- the filename within the directory to checkpublic java.lang.String toString()
toString
in class AbstractFileFilter
Copyright © 2010 - 2020 Adobe. All Rights Reserved