Package org.apache.torque.generator.file
Class WildcardFilter
java.lang.Object
org.apache.torque.generator.file.WildcardFilter
- All Implemented Interfaces:
FileFilter
A filter evaluating a file name against a wildcard expression.
-
Constructor Summary
ConstructorsConstructorDescriptionWildcardFilter(String expression, boolean acceptDir, boolean acceptFile) Constructor. -
Method Summary
-
Constructor Details
-
WildcardFilter
Constructor.- Parameters:
expression- The wildcard expression against which the file names are checked.acceptDir- Whether directories are accepted at all.acceptFile- Whether files are accepted at all.
-
-
Method Details
-
accept
Returns whether a file matches the criteria of this filter. If the file is a directory andacceptDiris false, the file is rejected. If the file is regular file andacceptFileis false, the file is rejected. If the filename does not match the wildcard filter, the file is rejected. If none of the above applies, the file is accepted.- Specified by:
acceptin interfaceFileFilter- Returns:
- false if the file is rejected, true if it is accepted.
-