Package org.apache.commons.io.filefilter
Class TrueFileFilter
java.lang.Object
org.apache.commons.io.filefilter.TrueFileFilter
- All Implemented Interfaces:
FileFilter,FilenameFilter,Serializable,IOFileFilter
A file filter that always returns true.
- Since:
- 1.0
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final IOFileFilterSingleton instance of true filter.private static final longstatic final IOFileFilterSingleton instance of true filter.Fields inherited from interface org.apache.commons.io.filefilter.IOFileFilter
EMPTY_STRING_ARRAY -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
serialVersionUID
private static final long serialVersionUID- See Also:
-
TRUE
Singleton instance of true filter.- Since:
- 1.3
-
INSTANCE
Singleton instance of true filter. Please use the identical TrueFileFilter.TRUE constant. The new name is more JDK 1.5 friendly as it doesn't clash with other values when using static imports.
-
-
Constructor Details
-
TrueFileFilter
protected TrueFileFilter()Restrictive constructor.
-
-
Method Details
-
accept
Returns true.- Specified by:
acceptin interfaceFileFilter- Specified by:
acceptin interfaceIOFileFilter- Parameters:
file- the file to check (ignored)- Returns:
- true
-
accept
Returns true.- Specified by:
acceptin interfaceFilenameFilter- Specified by:
acceptin interfaceIOFileFilter- Parameters:
dir- the directory to check (ignored)name- the file name (ignored)- Returns:
- true
-