Package jadx.core.dex.nodes
Interface IMethodDetails
-
- All Superinterfaces:
jadx.api.plugins.input.data.attributes.IJadxAttribute
- All Known Implementing Classes:
ClspMethod,MethodNode,MutableMethodDetails,SimpleMethodDetails
public interface IMethodDetails extends jadx.api.plugins.input.data.attributes.IJadxAttribute
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description java.util.List<ArgType>getArgTypes()default AType<IMethodDetails>getAttrType()MethodInfogetMethodInfo()intgetRawAccessFlags()ArgTypegetReturnType()java.util.List<ArgType>getThrows()java.util.List<ArgType>getTypeParameters()booleanisVarArg()default java.lang.StringtoAttrString()
-
-
-
Method Detail
-
getMethodInfo
MethodInfo getMethodInfo()
-
getReturnType
ArgType getReturnType()
-
getArgTypes
java.util.List<ArgType> getArgTypes()
-
getTypeParameters
java.util.List<ArgType> getTypeParameters()
-
getThrows
java.util.List<ArgType> getThrows()
-
isVarArg
boolean isVarArg()
-
getRawAccessFlags
int getRawAccessFlags()
-
getAttrType
default AType<IMethodDetails> getAttrType()
- Specified by:
getAttrTypein interfacejadx.api.plugins.input.data.attributes.IJadxAttribute
-
toAttrString
default java.lang.String toAttrString()
- Specified by:
toAttrStringin interfacejadx.api.plugins.input.data.attributes.IJadxAttribute
-
-