Converts a class descriptor / signature into strings like
List<T extends java.lang.Exception>
Notice that the result does not include the accessibility.
Converts an ASM method node into strings like
meth(java.lang.String, java.util.Map)}
<T extends java.io.IOException> meth(T, double, java.lang.List<T>)
Notice that the result includes neither the return type nor the accessibility.
Converts a method descriptor / signature into strings like
meth(java.lang.String, java.util.Map)
<T extends java.io.IOException>meth(T, double, java.lang.List<T>)
Notice that the result includes neither the return type nor the accessibility.