net.sf.cglib.core
Class Signature
java.lang.Object
net.sf.cglib.core.Signature
public class Signature
- extends Object
A representation of a method signature, containing the method name,
return type, and parameter types.
Signature
public Signature(String name,
String desc)
Signature
public Signature(String name,
org.objectweb.asm.Type returnType,
org.objectweb.asm.Type[] argumentTypes)
getName
public String getName()
getDescriptor
public String getDescriptor()
getReturnType
public org.objectweb.asm.Type getReturnType()
getArgumentTypes
public org.objectweb.asm.Type[] getArgumentTypes()
toString
public String toString()
- Overrides:
toString in class Object
equals
public boolean equals(Object o)
- Overrides:
equals in class Object
hashCode
public int hashCode()
- Overrides:
hashCode in class Object
Copyright © 2012 Oracle Corporation. All Rights Reserved.