Interface | Description |
---|---|
ConditionalFileFilter |
Defines operations for conditional file filters.
|
IOFileFilter |
An interface which brings the FileFilter and FilenameFilter
interfaces together.
|
Class | Description |
---|---|
AbstractFileFilter |
An abstract class which implements the Java FileFilter and FilenameFilter
interfaces via the IOFileFilter interface.
|
AgeFileFilter |
Filters files based on a cutoff time, can filter either newer
files or files equal to or older.
|
AndFileFilter |
A
FileFilter providing conditional AND logic across a list of
file filters. |
DelegateFileFilter |
This class turns a Java FileFilter or FilenameFilter into an IO FileFilter.
|
DirectoryFileFilter |
This filter accepts
File s that are directories. |
FalseFileFilter |
A file filter that always returns false.
|
FileFileFilter |
This filter accepts
File s that are files (not directories). |
FileFilterUtils |
Useful utilities for working with file filters.
|
NameFileFilter |
Filters filenames for a certain name.
|
NotFileFilter |
This filter produces a logical NOT of the filters specified.
|
OrFileFilter |
A
FileFilter providing conditional OR logic across a list of
file filters. |
PrefixFileFilter |
Filters filenames for a certain prefix.
|
SizeFileFilter |
Filters files based on size, can filter either smaller files or
files equal to or larger than a given threshold.
|
SuffixFileFilter |
Filters files based on the suffix (what the filename ends with).
|
TrueFileFilter |
A file filter that always returns true.
|
Copyright © 2001–2019 KnowGate. All rights reserved.