| Interface | Description |
|---|---|
| IFileFilter |
| Class | Description |
|---|---|
| AbstractFileFilter |
Abstract base implementation of
FileFilter with some conversion
methods. |
| FileFilterDirectoryOnly |
A file filter that accepts only directories.
|
| FileFilterDirectoryPublic |
A file filter that matches if the passed file is a directory and is public,
meaning it does not start with "."
|
| FileFilterFalse |
A file filter that accepts nothing.
|
| FileFilterFilenameEndsWith |
A filename filter that checks whether a file has the specified extension.
|
| FileFilterFilenameEquals |
A filename filter that checks whether a file has the specified name.
|
| FileFilterFilenameEqualsIgnoreCase |
A filename filter that checks whether a file has the specified name.
|
| FileFilterFilenameHidden |
A file filter that matches if the passed filename is hidden, meaning it does
start with "."
|
| FileFilterFilenameMatchAnyRegEx |
A filter that only accepts certain file names, based on a regular expression.
|
| FileFilterFilenameMatchNoRegEx |
A filter that rejects certain file names, based on a regular expression.
|
| FileFilterFilenameNotEquals |
A filename filter that checks whether a file does not have the specified
name.
|
| FileFilterFilenameNotEqualsIgnoreCase |
A filename filter that checks whether a file does not have the specified
name.
|
| FileFilterFilenameStartsWith |
A filename filter that checks whether a file starts with a certain text.
|
| FileFilterFileOnly |
A file filter that accepts only files.
|
| FileFilterFromFileFilter |
A special file filter that uses and external
FileFilter to determine
the validity. |
| FileFilterFromFilenameFilter |
A special file filter that uses and external
FilenameFilter to
determine the validity. |
| FileFilterParentDirectoryPublic |
A file filter that matches if the direct parent directory is public, meaning
it does not start with "."
|
| FileFilterTrue |
A file filter that accepts everything.
|
Copyright © 2014–2016 Philip Helger. All rights reserved.