Package org.apache.commons.io.filefilter
Interface IOFileFilter
-
- All Superinterfaces:
java.io.FileFilter,java.io.FilenameFilter
- All Known Implementing Classes:
AbstractFileFilter,AgeFileFilter,AndFileFilter,CanExecuteFileFilter,CanReadFileFilter,CanWriteFileFilter,DelegateFileFilter,DirectoryFileFilter,EmptyFileFilter,FalseFileFilter,FileFileFilter,HiddenFileFilter,MagicNumberFileFilter,NameFileFilter,NotFileFilter,OrFileFilter,PrefixFileFilter,RegexFileFilter,SizeFileFilter,SuffixFileFilter,TrueFileFilter,WildcardFileFilter,WildcardFilter
public interface IOFileFilter extends java.io.FileFilter, java.io.FilenameFilterAn interface which brings the FileFilter and FilenameFilter interfaces together.- Since:
- 1.0
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String[]EMPTY_STRING_ARRAYAn empty String array.
-
Method Summary
All Methods Instance Methods Abstract 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 dir, java.lang.String name)Checks to see if the File should be accepted by this filter.
-
-
-
Method Detail
-
accept
boolean accept(java.io.File file)
Checks to see if the File should be accepted by this filter.Defined in
FileFilter.- Specified by:
acceptin interfacejava.io.FileFilter- Parameters:
file- the File to check- Returns:
- true if this file matches the test
-
accept
boolean accept(java.io.File dir, java.lang.String name)Checks to see if the File should be accepted by this filter.Defined in
FilenameFilter.- Specified by:
acceptin interfacejava.io.FilenameFilter- Parameters:
dir- the directory File to checkname- the file name within the directory to check- Returns:
- true if this file matches the test
-
-