Package org.jacoco.core.runtime
Class WildcardMatcher
- java.lang.Object
-
- org.jacoco.core.runtime.WildcardMatcher
-
public class WildcardMatcher extends java.lang.Object
Matches strings against glob like wildcard expressions where?
matches any single character and*
matches any number of any character. Multiple expressions can be separated with a colon (:). In this case the expression matches if at least one part matches.
-
-
Field Summary
Fields Modifier and Type Field Description private java.util.regex.Pattern
pattern
-
Constructor Summary
Constructors Constructor Description WildcardMatcher(java.lang.String expression)
Creates a new matcher with the given expression.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
matches(java.lang.String s)
Matches the given string against the expressions of this matcher.private static java.lang.CharSequence
toRegex(java.lang.String expression)
-