이름 |
설명 |
CombinedStringMatcher |
Combines multiple string matchers. Input string is matched if matched by any of the contained matchers. |
DefaultStringMatcher |
Default string matcher which ignores pattern and treats all input strings as matched. |
ExactMatcher |
Implements IStringMatcher interface in such way that string matches the pattern only if it is exactly the same as the pattern. |
RegexMatcher |
Implements string matching algorithm which tries to match regular expression pattern with input strings. |
WildcardMatcher |
Implements string matching algorithm which tries to match pattern containing wildcard characters with the given input string. |