Class ExactPatternMatcher

  • All Implemented Interfaces:
    PatternMatcher

    public final class ExactPatternMatcher
    extends AbstractPatternMatcher
    Implementation of an exact matcher.

    The matching will be performed against an expression being a string. It will only matches if both strings are equal (per equals()) rule or if both strings are null.

    • Constructor Detail

      • ExactPatternMatcher

        public ExactPatternMatcher()
    • 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 class AbstractPatternMatcher
        Parameters:
        expression - the string to be matched.
        Returns:
        the instance of the related matcher. Never null.