Class AntPathMatcher.AntPathStringMatcher

java.lang.Object
org.miaixz.bus.core.text.AntPathMatcher.AntPathStringMatcher
Enclosing class:
AntPathMatcher

protected static class AntPathMatcher.AntPathStringMatcher extends Object
Tests whether a string matches against a pattern via a Pattern.

The pattern may contain special characters: '*' means zero or more characters; '?' means one and only one character; '{' and '}' indicate a URI template pattern. For example /users/{user}.

  • Constructor Details

    • AntPathStringMatcher

      public AntPathStringMatcher(String pattern, boolean caseSensitive)
  • Method Details

    • matchStrings

      public boolean matchStrings(String text, Map<String,String> uriTemplateVariables)
      Main entry point.
      Parameters:
      text - text
      uriTemplateVariables - uri template vars
      Returns:
      true if the string matches against the pattern, or false otherwise.