getMethodsBySignature
open fun getMethodsBySignature(name: String, paramTypes: Array<String>): List<MethodDeclaration>(source)
Try to find MethodDeclarations by their name and parameter types. Parameter types are matched exactly as in the case of getMethodsByParameterTypes.
Return
the methods found
Parameters
paramTypes
the types of parameters like "Map<Integer, String>", "int" to match void foo(Map<Integer,String> myMap, int number)