Package net.sf.cglib.core
Class Signature
- java.lang.Object
-
- net.sf.cglib.core.Signature
-
public class Signature extends java.lang.ObjectA representation of a method signature, containing the method name, return type, and parameter types.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object o)org.objectweb.asm.Type[]getArgumentTypes()java.lang.StringgetDescriptor()java.lang.StringgetName()org.objectweb.asm.TypegetReturnType()inthashCode()java.lang.StringtoString()
-
-
-
Method Detail
-
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()
- Overrides:
toStringin classjava.lang.Object
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
-