Class Signature


  • public class Signature
    extends Object
    A representation of a method signature, containing the method name, return type, and parameter types.
    • Constructor Detail

      • Signature

        public Signature​(String name,
                         String desc)
      • Signature

        public Signature​(String name,
                         org.objectweb.asm.Type returnType,
                         org.objectweb.asm.Type[] argumentTypes)
    • Method Detail

      • getName

        public String getName()
      • getDescriptor

        public String getDescriptor()
      • getReturnType

        public org.objectweb.asm.Type getReturnType()
      • getArgumentTypes

        public org.objectweb.asm.Type[] getArgumentTypes()
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Object