| Frames | No Frames |
Methods with parameter type org.apache.commons.io.filefilter.IOFileFilter | |
| void | |
| Collection | Finds files within a given directory (and optionally its
subdirectories). |
Classes implementing org.apache.commons.io.filefilter.IOFileFilter | |
| class | An abstract class which implements the Java FileFilter and FilenameFilter
interfaces via the IOFileFilter interface. |
| class | This filter produces a logical AND of the two filters specified. |
| class | This class turns a Java FileFilter or FilenameFilter into an IO FileFilter. |
| class | This filter accepts Files that are directories. |
| class | A file filter that always returns false. |
| class | Filters filenames for a certain name. |
| class | This filter produces a logical NOT of the filters specified. |
| class | This filter produces a logical OR of the two filters specified. |
| class | Filters filenames for a certain prefix. |
| class | Filters files based on the suffix (what the filename ends with). |
| class | A file filter that always returns true. |
Constructors with parameter type org.apache.commons.io.filefilter.IOFileFilter | |
Constructs a new file filter that ANDs the result of two other filters. | |
Constructs a new file filter that NOTs the result of another filters. | |
Constructs a new file filter that ORs the result of two other filters. | |
Fields of type org.apache.commons.io.filefilter.IOFileFilter | |
| IOFileFilter | Singleton instance of directory filter |
| IOFileFilter | Singleton instance of false filter |
| IOFileFilter | Singleton instance of true filter |
| IOFileFilter | |
| IOFileFilter | The filter |
| IOFileFilter | The first filter |
| IOFileFilter | The first filter |
| IOFileFilter | The second filter |
| IOFileFilter | The second filter |
Methods with parameter type org.apache.commons.io.filefilter.IOFileFilter | |
| IOFileFilter | Returns a filter that ANDs the two specified filters. |
| IOFileFilter | Resturns an IOFileFilter that ignores CVS directories. |
| IOFileFilter | Returns a filter that NOTs the specified filter. |
| IOFileFilter | Returns a filter that ORs the two specified filters. |
Methods with return type org.apache.commons.io.filefilter.IOFileFilter | |
| IOFileFilter | Returns a filter that ANDs the two specified filters. |
| IOFileFilter | FileFilterUtils.asFileFilter(FileFilter filter) Returns an IOFileFilter that wraps the
FileFilter instance. |
| IOFileFilter | FileFilterUtils.asFileFilter(FilenameFilter filter) Returns an IOFileFilter that wraps the
FilenameFilter instance. |
| IOFileFilter | Returns a filter that checks if the file is a directory. |
| IOFileFilter | Returns a filter that always returns false. |
| IOFileFilter | Resturns an IOFileFilter that ignores CVS directories. |
| IOFileFilter | FileFilterUtils.nameFileFilter(String name) Returns a filter that returns true if the filename matches the specified text. |
| IOFileFilter | Returns a filter that NOTs the specified filter. |
| IOFileFilter | Returns a filter that ORs the two specified filters. |
| IOFileFilter | FileFilterUtils.prefixFileFilter(String prefix) Returns a filter that returns true if the filename starts with the specified text. |
| IOFileFilter | FileFilterUtils.suffixFileFilter(String suffix) Returns a filter that returns true if the filename ends with the specified text. |
| IOFileFilter | Returns a filter that always returns true. |