Uses of Class
javassist.bytecode.SignatureAttribute.Type
-
Packages that use SignatureAttribute.Type Package Description javassist.bytecode Bytecode-level API. -
-
Uses of SignatureAttribute.Type in javassist.bytecode
Subclasses of SignatureAttribute.Type in javassist.bytecode Modifier and Type Class Description static classSignatureAttribute.ArrayTypeArray types.static classSignatureAttribute.BaseTypePrimitive types.static classSignatureAttribute.ClassTypeClass types.static classSignatureAttribute.NestedClassTypeNested class types.static classSignatureAttribute.ObjectTypeClass types, array types, and type variables.static classSignatureAttribute.TypeVariableType variables.Methods in javassist.bytecode that return SignatureAttribute.Type Modifier and Type Method Description SignatureAttribute.TypeSignatureAttribute.ArrayType. getComponentType()Returns the component type.SignatureAttribute.Type[]SignatureAttribute.MethodSignature. getParameterTypes()Returns the types of the formal parameters.SignatureAttribute.TypeSignatureAttribute.MethodSignature. getReturnType()Returns the type of the returned value.static SignatureAttribute.TypeSignatureAttribute. toTypeSignature(String sig)Parses the given signature string as a type signature.Constructors in javassist.bytecode with parameters of type SignatureAttribute.Type Constructor Description ArrayType(int d, SignatureAttribute.Type comp)Constructs anArrayType.MethodSignature(SignatureAttribute.TypeParameter[] tp, SignatureAttribute.Type[] params, SignatureAttribute.Type ret, SignatureAttribute.ObjectType[] ex)Constructs a method type signature.
-