Uses of Interface org.apache.commons.io.filefilter.IOFileFilter

Uses in package org.apache.commons.io

Methods with parameter type org.apache.commons.io.filefilter.IOFileFilter

void
FileUtils.innerListFiles(Collection files, File directory, IOFileFilter filter)
Collection
FileUtils.listFiles(File directory, IOFileFilter fileFilter, IOFileFilter dirFilter)
Finds files within a given directory (and optionally its subdirectories).

Uses in package org.apache.commons.io.filefilter

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
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
Returns a filter that returns true if the filename starts with the specified text.
IOFileFilter
Returns a filter that returns true if the filename ends with the specified text.
IOFileFilter
Returns a filter that always returns true.