Class MethodTypeSignature
- java.lang.Object
-
- com.strobel.assembler.metadata.signatures.MethodTypeSignature
-
-
Field Summary
Fields Modifier and Type Field Description private FieldTypeSignature[]exceptionTypesprivate FormalTypeParameter[]formalTypeParamsprivate TypeSignature[]parameterTypesprivate ReturnTypereturnType
-
Constructor Summary
Constructors Modifier Constructor Description privateMethodTypeSignature(FormalTypeParameter[] ftps, TypeSignature[] pts, ReturnType rt, FieldTypeSignature[] ets)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaccept(Visitor v)FieldTypeSignature[]getExceptionTypes()FormalTypeParameter[]getFormalTypeParameters()TypeSignature[]getParameterTypes()ReturnTypegetReturnType()static MethodTypeSignaturemake(FormalTypeParameter[] ftps, TypeSignature[] pts, ReturnType rt, FieldTypeSignature[] ets)
-
-
-
Field Detail
-
formalTypeParams
private final FormalTypeParameter[] formalTypeParams
-
parameterTypes
private final TypeSignature[] parameterTypes
-
returnType
private final ReturnType returnType
-
exceptionTypes
private final FieldTypeSignature[] exceptionTypes
-
-
Constructor Detail
-
MethodTypeSignature
private MethodTypeSignature(FormalTypeParameter[] ftps, TypeSignature[] pts, ReturnType rt, FieldTypeSignature[] ets)
-
-
Method Detail
-
make
public static MethodTypeSignature make(FormalTypeParameter[] ftps, TypeSignature[] pts, ReturnType rt, FieldTypeSignature[] ets)
-
getFormalTypeParameters
public FormalTypeParameter[] getFormalTypeParameters()
- Specified by:
getFormalTypeParametersin interfaceSignature
-
getParameterTypes
public TypeSignature[] getParameterTypes()
-
getReturnType
public ReturnType getReturnType()
-
getExceptionTypes
public FieldTypeSignature[] getExceptionTypes()
-
accept
public void accept(Visitor v)
-
-