|
Class Summary |
| AndFileFilter |
FileFilter which combines several Filters which all must
be true for the accept method of this filter to return true. |
| AttributesFileFilter |
TODO: under construction |
| DirectoryContentFileFilter |
A FileFilter which accepts directories based on the file count they contain. |
| DirectoryFileFilter |
A FileFilter which will accept directories only, as determined by the
java.io.File.isDirectory() method. |
| ExtensionFileFilter |
A convenience implementation of FileFilter that filters out
all files except for those type extensions that it knows about. |
| FileFilterUtils |
Convenience methods for retrieving list of file from a single directory,
or recursively in a directory hierarchy. |
| FilterAdapter |
Adapter which converts a FilenameFilter to a FileFilter. |
| FilterTests |
|
| NegateFileFilter |
Filter which returns the opposite value return by the specified
filter's accept method. |
| OrFileFilter |
FileFilter which combines several filters where one or more must
be true for the accept method of this filter to return true. |
| ParentDirectoryFileFilter |
A FileFilter which accepts files based on their parent directory being
accepted. |
| RegexFileFilter |
Filefilter where the full canonical path name is matched against
the regular expression string given as a constructor to this filter. |
| RegexFilenameFilter |
FilenameFilter where the only the filename name is matched against
the regular expression string given as a constructor to this filter. |