Class GlobPatternUtil


  • public class GlobPatternUtil
    extends Object
    Provides methods for matching glob patterns against input strings.
    • Constructor Detail

      • GlobPatternUtil

        public GlobPatternUtil()
    • Method Detail

      • matches

        public static boolean matches​(String pattern,
                                      String input)
        Matches an input string against a provided glob patterns. This uses Java NIO FileSystems PathMatcher to match glob patterns in the same way to how glob patterns are matches for file paths, rather than implementing our own glob pattern matching.
        Parameters:
        pattern - the glob pattern to match against
        input - the input string to match against a glob pattern
        Returns:
        true if the input string matches the glob pattern, false otherwise