Uses of Class
com.strobel.assembler.metadata.signatures.FormalTypeParameter
-
Packages that use FormalTypeParameter Package Description com.strobel.assembler.metadata.signatures -
-
Uses of FormalTypeParameter in com.strobel.assembler.metadata.signatures
Fields in com.strobel.assembler.metadata.signatures declared as FormalTypeParameter Modifier and Type Field Description private FormalTypeParameter[]
ClassSignature. _formalTypeParameters
private static FormalTypeParameter[]
SignatureParser. EMPTY_FORMAL_TYPE_PARAMETERS
private FormalTypeParameter[]
MethodTypeSignature. formalTypeParams
Methods in com.strobel.assembler.metadata.signatures that return FormalTypeParameter Modifier and Type Method Description FormalTypeParameter[]
ClassSignature. getFormalTypeParameters()
FormalTypeParameter[]
MethodTypeSignature. getFormalTypeParameters()
FormalTypeParameter[]
Signature. getFormalTypeParameters()
static FormalTypeParameter
FormalTypeParameter. make(java.lang.String name, FieldTypeSignature[] bounds)
private FormalTypeParameter
SignatureParser. parseFormalTypeParameter()
private FormalTypeParameter[]
SignatureParser. parseFormalTypeParameters()
private FormalTypeParameter[]
SignatureParser. parseZeroOrMoreFormalTypeParameters()
Methods in com.strobel.assembler.metadata.signatures with parameters of type FormalTypeParameter Modifier and Type Method Description static ClassSignature
ClassSignature. make(FormalTypeParameter[] ftps, ClassTypeSignature sc, ClassTypeSignature[] sis)
static MethodTypeSignature
MethodTypeSignature. make(FormalTypeParameter[] ftps, TypeSignature[] pts, ReturnType rt, FieldTypeSignature[] ets)
void
Reifier. visitFormalTypeParameter(FormalTypeParameter ftp)
void
TypeTreeVisitor. visitFormalTypeParameter(FormalTypeParameter ftp)
Constructors in com.strobel.assembler.metadata.signatures with parameters of type FormalTypeParameter Constructor Description ClassSignature(FormalTypeParameter[] ftps, ClassTypeSignature sc, ClassTypeSignature[] sis)
MethodTypeSignature(FormalTypeParameter[] ftps, TypeSignature[] pts, ReturnType rt, FieldTypeSignature[] ets)
-