I would like to get a string like:
Ljava/lang/Class;.getName()Ljava/lang/String;
(JNI style type / method description or type descriptor)
from javax.lang.model.type.TypeMirror object to AnnotationProcessor . Is there a Convenience method or library that parses a TypeMirror object and creates a string as above?
I would like to use String to build an org.objectweb.asm.Type object from a type descriptor string.
source share