Package org.jf.dexlib2.base
Class BaseMethodParameter
- java.lang.Object
-
- org.jf.dexlib2.base.reference.BaseReference
-
- org.jf.dexlib2.base.reference.BaseTypeReference
-
- org.jf.dexlib2.base.BaseMethodParameter
-
- All Implemented Interfaces:
java.lang.CharSequence
,java.lang.Comparable<java.lang.CharSequence>
,LocalInfo
,MethodParameter
,Reference
,TypeReference
- Direct Known Subclasses:
BuilderMethodParameter
,ImmutableMethodParameter
,MethodParameterRewriter.RewrittenMethodParameter
public abstract class BaseMethodParameter extends BaseTypeReference implements MethodParameter
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.jf.dexlib2.iface.reference.Reference
Reference.InvalidReferenceException
-
-
Constructor Summary
Constructors Constructor Description BaseMethodParameter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getSignature()
Gets the signature of this parameter, if available.-
Methods inherited from class org.jf.dexlib2.base.reference.BaseTypeReference
charAt, compareTo, equals, hashCode, length, subSequence, toString
-
Methods inherited from class org.jf.dexlib2.base.reference.BaseReference
validateReference
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.lang.CharSequence
charAt, chars, codePoints, length, subSequence, toString
-
Methods inherited from interface org.jf.dexlib2.iface.MethodParameter
getAnnotations, getName, getType
-
Methods inherited from interface org.jf.dexlib2.iface.reference.Reference
validateReference
-
Methods inherited from interface org.jf.dexlib2.iface.reference.TypeReference
compareTo, equals, hashCode
-
-
-
-
Method Detail
-
getSignature
@Nullable public java.lang.String getSignature()
Description copied from interface:MethodParameter
Gets the signature of this parameter, if available. The signature of a parameter is defined to be the concatenated version of the dalvik.annotation.Signature annotation applied to this parameter, or null if there is no dalvik.annotation.Signature annotation.- Specified by:
getSignature
in interfaceLocalInfo
- Specified by:
getSignature
in interfaceMethodParameter
- Returns:
- The signature of this parameter, or null if not available
-
-