Uses of Interface
com.strobel.assembler.metadata.signatures.TypeSignature
-
Packages that use TypeSignature Package Description com.strobel.assembler.metadata.signatures -
-
Uses of TypeSignature in com.strobel.assembler.metadata.signatures
Subinterfaces of TypeSignature in com.strobel.assembler.metadata.signatures Modifier and Type Interface Description interface
BaseType
interface
FieldTypeSignature
Classes in com.strobel.assembler.metadata.signatures that implement TypeSignature Modifier and Type Class Description class
ArrayTypeSignature
class
BooleanSignature
class
BottomSignature
class
ByteSignature
class
CharSignature
class
ClassTypeSignature
class
DoubleSignature
class
FloatSignature
class
IntSignature
class
LongSignature
class
ShortSignature
class
SimpleClassTypeSignature
class
TypeVariableSignature
class
VoidSignature
Fields in com.strobel.assembler.metadata.signatures declared as TypeSignature Modifier and Type Field Description private TypeSignature
ArrayTypeSignature. _componentType
private static TypeSignature[]
SignatureParser. EMPTY_TYPE_SIGNATURES
private TypeSignature[]
MethodTypeSignature. parameterTypes
Methods in com.strobel.assembler.metadata.signatures that return TypeSignature Modifier and Type Method Description TypeSignature
ArrayTypeSignature. getComponentType()
TypeSignature[]
MethodTypeSignature. getParameterTypes()
private TypeSignature[]
SignatureParser. parseFormalParameters()
private TypeSignature
SignatureParser. parseTypeSignature()
TypeSignature
SignatureParser. parseTypeSignature(java.lang.String s)
private TypeSignature[]
SignatureParser. parseZeroOrMoreTypeSignatures()
Methods in com.strobel.assembler.metadata.signatures with parameters of type TypeSignature Modifier and Type Method Description static ArrayTypeSignature
ArrayTypeSignature. make(TypeSignature ct)
static MethodTypeSignature
MethodTypeSignature. make(FormalTypeParameter[] ftps, TypeSignature[] pts, ReturnType rt, FieldTypeSignature[] ets)
Constructors in com.strobel.assembler.metadata.signatures with parameters of type TypeSignature Constructor Description ArrayTypeSignature(TypeSignature componentType)
MethodTypeSignature(FormalTypeParameter[] ftps, TypeSignature[] pts, ReturnType rt, FieldTypeSignature[] ets)
-