Class MethodTypeSignature
- java.lang.Object
-
- com.strobel.assembler.metadata.signatures.MethodTypeSignature
-
-
Field Summary
Fields Modifier and Type Field Description private FieldTypeSignature[]
exceptionTypes
private FormalTypeParameter[]
formalTypeParams
private TypeSignature[]
parameterTypes
private ReturnType
returnType
-
Constructor Summary
Constructors Modifier Constructor Description private
MethodTypeSignature(FormalTypeParameter[] ftps, TypeSignature[] pts, ReturnType rt, FieldTypeSignature[] ets)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
accept(Visitor v)
FieldTypeSignature[]
getExceptionTypes()
FormalTypeParameter[]
getFormalTypeParameters()
TypeSignature[]
getParameterTypes()
ReturnType
getReturnType()
static MethodTypeSignature
make(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:
getFormalTypeParameters
in interfaceSignature
-
getParameterTypes
public TypeSignature[] getParameterTypes()
-
getReturnType
public ReturnType getReturnType()
-
getExceptionTypes
public FieldTypeSignature[] getExceptionTypes()
-
accept
public void accept(Visitor v)
-
-