Package com.android.dexdeps
Class MethodRef
- java.lang.Object
-
- com.android.dexdeps.MethodRef
-
- All Implemented Interfaces:
HasDeclaringClass
public class MethodRef extends Object implements HasDeclaringClass
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)String[]getArgumentTypeNames()Gets an array of method argument types.StringgetDeclClassName()Gets the name of the method's declaring class.StringgetDescriptor()Gets the method's descriptor.StringgetName()Gets the method's name.StringgetReturnTypeName()Gets the method's return type.inthashCode()
-
-
-
Method Detail
-
getDeclClassName
public String getDeclClassName()
Gets the name of the method's declaring class.- Specified by:
getDeclClassNamein interfaceHasDeclaringClass
-
getDescriptor
public String getDescriptor()
Gets the method's descriptor.
-
getArgumentTypeNames
public String[] getArgumentTypeNames()
Gets an array of method argument types.
-
getReturnTypeName
public String getReturnTypeName()
Gets the method's return type. Examples: "Ljava/lang/String;", "[I".
-
-