| java.lang.Object org.apache.commons.digester.RegexMatcher
All known Subclasses: org.apache.commons.digester.SimpleRegexMatcher,
RegexMatcher | abstract public class RegexMatcher (Code) | | Regular expression matching strategy for RegexRules.
since: 1.5 |
Method Summary | |
abstract public boolean | match(String pathPattern, String rulePattern) Returns true if the given pattern matches the given path
according to the regex algorithm that this strategy applies. |
match | abstract public boolean match(String pathPattern, String rulePattern)(Code) | | Returns true if the given pattern matches the given path
according to the regex algorithm that this strategy applies.
Parameters: pathPattern - the standard digester path representing the element Parameters: rulePattern - the regex pattern the path will be tested against true if the given pattern matches the given path |
|
|