Lines Matching refs:parameterTypes

908             Type []    parameterTypes   = typeInfo.getParameterTypes();
909 Class<?>[] parameterClasses = new Class<?>[parameterTypes.length];
915 parameterClasses[i] = toClass(parameterTypes[i]);
1045 Type [] parameterTypes = typeInfo.getParameterTypes();
1046 Class<?>[] parameterClasses = new Class<?>[parameterTypes.length];
1052 parameterClasses[i] = toClass(parameterTypes[i]);
1580 * {@code parameterTypes} parameter is an array of {@code Class}
1582 * order. If {@code parameterTypes} is {@code null}, it is
1619 * @param parameterTypes the list of parameters
1621 * {@code name} and {@code parameterTypes}
1647 public Method getMethod(String name, Class<?>... parameterTypes)
1653 Method method = getMethod0(name, parameterTypes);
1655 throw new NoSuchMethodException(getName() + "." + name + argumentTypesToString(parameterTypes));
1664 * object. The {@code parameterTypes} parameter is an array of
1674 * types match those specified by {@code parameterTypes}.
1676 * @param parameterTypes the parameter array
1678 * matches the specified {@code parameterTypes}
1702 public Constructor<T> getConstructor(Class<?>... parameterTypes)
1708 return getConstructor0(parameterTypes, Member.PUBLIC);
1949 * method, and the {@code parameterTypes} parameter is an array of
1959 * @param parameterTypes the parameter array
1986 public Method getDeclaredMethod(String name, Class<?>... parameterTypes)
1992 Method method = searchMethods(privateGetDeclaredMethods(false), name, parameterTypes);
1994 throw new NoSuchMethodException(getName() + "." + name + argumentTypesToString(parameterTypes));
2003 * {@code Class} object. The {@code parameterTypes} parameter is
2011 * @param parameterTypes the parameter array
2037 public Constructor<T> getDeclaredConstructor(Class<?>... parameterTypes)
2043 return getConstructor0(parameterTypes, Member.DECLARED);
2737 Class<?>[] parameterTypes)
2744 && arrayContentsEq(parameterTypes, m.getParameterTypes())
2754 private Method getMethod0(String name, Class<?>[] parameterTypes) {
2766 parameterTypes)) != null) {
2773 if ((res = c.getMethod0(name, parameterTypes)) != null) {
2782 if ((res = c.getMethod0(name, parameterTypes)) != null) {
2790 private Constructor<T> getConstructor0(Class<?>[] parameterTypes,
2795 if (arrayContentsEq(parameterTypes,
2800 throw new NoSuchMethodException(getName() + ".<init>" + argumentTypesToString(parameterTypes));