Class GlobUtil

java.lang.Object
sonia.scm.util.GlobUtil

public final class GlobUtil extends Object
Util for pattern matching with glob (http://en.wikipedia.org/wiki/Glob_%28programming%29) syntax.
Since:
1.8
  • Method Details

    • convertGlobToRegEx

      public static String convertGlobToRegEx(String globString)
      Converts the given glob string to a regular expression string.
    • matches

      public static boolean matches(String glob, String value)
      Returns true if the glob string matches the given value.
      Parameters:
      glob - glob pattern
      value - string value