Uses of Class
jetbrains.buildServer.util.regex.MatcherUtil.MatchingException
-
Packages that use MatcherUtil.MatchingException Package Description jetbrains.buildServer.util.regex -
-
Uses of MatcherUtil.MatchingException in jetbrains.buildServer.util.regex
Methods in jetbrains.buildServer.util.regex that throw MatcherUtil.MatchingException Modifier and Type Method Description static StringMatcherUtil. find(String input, String regex)static StringMatcherUtil. find(String input, String regex, int timeout)Attempts to find a subsequence of the provided input sequence that matches the provided pattern.static StringMatcherUtil. find(String input, Pattern pattern)Uses default timeout specified byMatcherUtil.REGEX_MATCHING_TIMEOUT_MSinternal property or default timeout specified byMatcherUtil.DEFAULT_REGEX_MATCHING_TIMEOUT_MSor falls back to regular matching without timeout in case of negativeMatcherUtil.REGEX_MATCHING_TIMEOUT_MSinternal property valuestatic StringMatcherUtil. find(String input, Pattern pattern, int timeout)Same as the above method, but accepts compiledPatternstatic StringMatcherUtil. find(Matcher matcher)static booleanMatcherUtil. matches(String input, String regex, int timeout)Match the provided input against the provided regular expression.static booleanMatcherUtil. matches(String input, Pattern pattern, int timeout)Match the provided input against the provided regular expression.
-