Class PathMatcherFileFilter
java.lang.Object
org.apache.commons.io.filefilter.AbstractFileFilter
org.apache.commons.io.filefilter.PathMatcherFileFilter
- All Implemented Interfaces:
FileFilter, FilenameFilter, FileVisitor<Path>, PathMatcher, PathFilter, PathVisitor, IOFileFilter
Delegates matching to a
PathMatcher.- Since:
- 2.14.0
-
Field Summary
Fields inherited from interface IOFileFilter
EMPTY_STRING_ARRAY -
Constructor Summary
ConstructorsConstructorDescriptionPathMatcherFileFilter(PathMatcher pathMatcher) Constructs a new instance to perform matching with a PathMatcher. -
Method Summary
Methods inherited from class AbstractFileFilter
accept, handle, postVisitDirectory, preVisitDirectory, toString, visitFile, visitFileFailedMethods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface IOFileFilter
accept, and, negate, or
-
Constructor Details
-
PathMatcherFileFilter
Constructs a new instance to perform matching with a PathMatcher.- Parameters:
pathMatcher- The PathMatcher delegate.
-
-
Method Details
-
accept
Description copied from class:AbstractFileFilterTests to see if the File should be accepted by this filter.- Specified by:
acceptin interfaceFileFilter- Specified by:
acceptin interfaceIOFileFilter- Overrides:
acceptin classAbstractFileFilter- Parameters:
file- the File to check- Returns:
- true if this file matches the test
-
matches
Description copied from interface:IOFileFilterTests if a Path should be accepted by this filter.- Parameters:
path- the Path to check.- Returns:
- true if this path matches the test.
-