类 Signature


  • public class Signature
    extends java.lang.Object
    A representation of a method signature, containing the method name, return type, and parameter types.
    • 构造器概要

      构造器 
      构造器 说明
      Signature​(java.lang.String name, java.lang.String desc)  
      Signature​(java.lang.String name, org.objectweb.asm.Type returnType, org.objectweb.asm.Type[] argumentTypes)  
    • 构造器详细资料

      • Signature

        public Signature​(java.lang.String name,
                         java.lang.String desc)
      • Signature

        public Signature​(java.lang.String name,
                         org.objectweb.asm.Type returnType,
                         org.objectweb.asm.Type[] argumentTypes)
    • 方法详细资料

      • getName

        public java.lang.String getName()
      • getDescriptor

        public java.lang.String getDescriptor()
      • getReturnType

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

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

        public java.lang.String toString()
        覆盖:
        toString 在类中 java.lang.Object
      • equals

        public boolean equals​(java.lang.Object o)
        覆盖:
        equals 在类中 java.lang.Object
      • hashCode

        public int hashCode()
        覆盖:
        hashCode 在类中 java.lang.Object