Member predicate Callable::getStringSignature
Gets the signature of this callable, including its name and the types of all its parameters, identified by their simple (unqualified) names.
The format of the string is <name><params>, where <name> is the result of
the predicate getName() and <params> is the result of paramsString().
For example, the method void printf(java.lang.String, java.lang.Object...)
has the string signature printf(String, Object[]).
Use getSignature to obtain a signature including fully qualified type names.