Package org.apache.commons.io.filefilter
Class FalseFileFilter
java.lang.Object
org.apache.commons.io.filefilter.FalseFileFilter
- All Implemented Interfaces:
FileFilter
,FilenameFilter
,Serializable
,PathMatcher
,PathFilter
,IOFileFilter
A file filter that always returns false.
Deprecating Serialization
Serialization is deprecated and will be removed in 3.0.
- Since:
- 1.0
- See Also:
-
Field Summary
Modifier and TypeFieldDescriptionstatic final IOFileFilter
Singleton instance of false filter.static final IOFileFilter
Singleton instance of false filter.Fields inherited from interface org.apache.commons.io.filefilter.IOFileFilter
EMPTY_STRING_ARRAY
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
Returns false.boolean
Returns false.accept
(Path file, BasicFileAttributes attributes) Returns false.and
(IOFileFilter fileFilter) Constructs a new "and" filter with this filter.negate()
Constructs a new "not" filter with this filter.or
(IOFileFilter fileFilter) Constructs a new "or" filter with this filter.toString()
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.apache.commons.io.filefilter.IOFileFilter
matches
-
Field Details
-
FALSE
Singleton instance of false filter.- Since:
- 1.3
-
INSTANCE
Singleton instance of false filter. Please use the identical FalseFileFilter.FALSE constant. The new name is more JDK 1.5 friendly as it doesn't clash with other values when using static imports.
-
-
Constructor Details
-
FalseFileFilter
protected FalseFileFilter()Restrictive constructor.
-
-
Method Details
-
accept
Returns false.- Specified by:
accept
in interfaceFileFilter
- Specified by:
accept
in interfaceIOFileFilter
- Parameters:
file
- the file to check (ignored)- Returns:
- false
-
accept
Returns false.- Specified by:
accept
in interfaceFilenameFilter
- Specified by:
accept
in interfaceIOFileFilter
- Parameters:
dir
- the directory to check (ignored)name
- the file name (ignored)- Returns:
- false
-
accept
Returns false.- Specified by:
accept
in interfaceIOFileFilter
- Specified by:
accept
in interfacePathFilter
- Parameters:
file
- the file to check (ignored)attributes
- the path's basic attributes (may be null).- Returns:
- false
- Since:
- 2.9.0
-
and
Description copied from interface:IOFileFilter
Constructs a new "and" filter with this filter.- Specified by:
and
in interfaceIOFileFilter
- Parameters:
fileFilter
- the filter to "and".- Returns:
- a new filter.
-
negate
Description copied from interface:IOFileFilter
Constructs a new "not" filter with this filter.- Specified by:
negate
in interfaceIOFileFilter
- Returns:
- a new filter.
-
or
Description copied from interface:IOFileFilter
Constructs a new "or" filter with this filter.- Specified by:
or
in interfaceIOFileFilter
- Parameters:
fileFilter
- the filter to "or".- Returns:
- a new filter.
-
toString
-