Searched refs:paramTypes (Results 1 – 3 of 3) sorted by relevance
155 Class<?>[] paramTypes = method.getParameterTypes(); in getMethodWithParameters() local156 if (paramTypes.length != paramTypesNames.length) { in getMethodWithParameters()159 for (int i = 0; i < paramTypes.length; i++) { in getMethodWithParameters()161 String actual = paramTypes[i].getCanonicalName(); in getMethodWithParameters()
53 public ReflectionMethod withMethod(String methodName, Class<?>... paramTypes) in withMethod() argument56 return new ReflectionMethod(mTargetObject.getClass().getMethod(methodName, paramTypes)); in withMethod()
226 Class<?> klass, String methodName, Class<?> ... paramTypes) { in hasMethod() argument228 klass.getDeclaredMethod(methodName, paramTypes); in hasMethod()