Package org.apache.commons.io.filefilter
Interface IOFileFilter
-
- All Superinterfaces:
java.io.FileFilter
,java.io.FilenameFilter
- All Known Implementing Classes:
AbstractFileFilter
,AgeFileFilter
,AndFileFilter
,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.FilenameFilter
An interface which brings the FileFilter and FilenameFilter interfaces together.- Since:
- 1.0
- Version:
- $Id: IOFileFilter.java 1304052 2012-03-22 20:55:29Z ggregory $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
accept(java.io.File file)
Checks to see if the File should be accepted by this filter.boolean
accept(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:
accept
in 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:
accept
in interfacejava.io.FilenameFilter
- Parameters:
dir
- the directory File to checkname
- the filename within the directory to check- Returns:
- true if this file matches the test
-
-