public boolean isMatch(ApiMethod method, String intf) {
   if (method == null) return _methodName.equals("*");
   else return isMatch(method.getName(), method.getParameterTypes(), intf);
 }