Package org.apache.ivy.plugins.matcher
Class RegexpPatternMatcher
- java.lang.Object
-
- org.apache.ivy.plugins.matcher.AbstractPatternMatcher
-
- org.apache.ivy.plugins.matcher.RegexpPatternMatcher
-
- All Implemented Interfaces:
PatternMatcher
public final class RegexpPatternMatcher extends AbstractPatternMatcher
A pattern matcher matching input using regular expressions.- See Also:
Pattern
-
-
Field Summary
Fields Modifier and Type Field Description static RegexpPatternMatcher
INSTANCE
-
Fields inherited from interface org.apache.ivy.plugins.matcher.PatternMatcher
ANY_EXPRESSION, EXACT, EXACT_OR_REGEXP, GLOB, REGEXP
-
-
Constructor Summary
Constructors Constructor Description RegexpPatternMatcher()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected Matcher
newMatcher(java.lang.String expression)
Returns an instance of the implementation specific matcher.-
Methods inherited from class org.apache.ivy.plugins.matcher.AbstractPatternMatcher
getMatcher, getName, toString
-
-
-
-
Field Detail
-
INSTANCE
public static final RegexpPatternMatcher INSTANCE
-
-
Method Detail
-
newMatcher
protected Matcher newMatcher(java.lang.String expression)
Description copied from class:AbstractPatternMatcher
Returns an instance of the implementation specific matcher.- Specified by:
newMatcher
in classAbstractPatternMatcher
- Parameters:
expression
- the string to be matched.- Returns:
- the instance of the related matcher. Never null.
-
-