Package net.sf.cglib.core
Class Signature
- java.lang.Object
-
- net.sf.cglib.core.Signature
-
public class Signature extends java.lang.Object
A 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 boolean
equals(java.lang.Object o)
org.objectweb.asm.Type[]
getArgumentTypes()
java.lang.String
getDescriptor()
java.lang.String
getName()
org.objectweb.asm.Type
getReturnType()
int
hashCode()
java.lang.String
toString()
-
-
-
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:
toString
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
-