org.apache.oro.io
public class AwkFilenameFilter extends RegexFilenameFilter
Since: 1.0
Version: 2.0.8
See Also: RegexFilenameFilter Perl5FilenameFilter GlobFilenameFilter
Constructor Summary | |
---|---|
AwkFilenameFilter(String regex, int options)
Construct a filter initialized with the indicated regular expression
and accompanying compilation options conforming to those used by
org.apache.oro.text.awk.AwkCompiler
| |
AwkFilenameFilter(String regex) Same as AwkFilenameFilter(regex, AwkCompiler.DEFAULT_MASK); | |
AwkFilenameFilter() Same as AwkFilenameFilter(""); |
org.apache.oro.text.awk.AwkCompiler
Parameters: regex The regular expression on which to filter. options A set of compilation options.
Throws: MalformedCachePatternException If there is an error in compiling the regular expression. This need not be caught if you are using a hard-coded expression that you know is correct. But for robustness and reliability you should catch this exception for dynamically entered expressions determined at runtime.