Matcher implements MatchResult, which "contains query methods used to determine the results of a match against a regular expression." Surprisingly, although group(), group(int) and groupCount() are available through the MatchResult interface, group(String) is not.
Is this an oversight, or was it left out Java 7 for compatibility reasons? If it's for backwards compatibility, couldn't that have been resolved with a default method in Java 8?
