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 class
SignatureAttribute.ArrayType
Array types.static class
SignatureAttribute.BaseType
Primitive types.static class
SignatureAttribute.ClassType
Class types.static class
SignatureAttribute.NestedClassType
Nested class types.static class
SignatureAttribute.ObjectType
Class types, array types, and type variables.static class
SignatureAttribute.TypeVariable
Type variables.Fields in javassist.bytecode declared as SignatureAttribute.Type Modifier and Type Field Description (package private) SignatureAttribute.Type
SignatureAttribute.ArrayType. componentType
(package private) SignatureAttribute.Type[]
SignatureAttribute.MethodSignature. params
(package private) SignatureAttribute.Type
SignatureAttribute.MethodSignature. retType
Methods in javassist.bytecode that return SignatureAttribute.Type Modifier and Type Method Description SignatureAttribute.Type
SignatureAttribute.ArrayType. getComponentType()
Returns the component type.SignatureAttribute.Type[]
SignatureAttribute.MethodSignature. getParameterTypes()
Returns the types of the formal parameters.SignatureAttribute.Type
SignatureAttribute.MethodSignature. getReturnType()
Returns the type of the returned value.private static SignatureAttribute.Type
SignatureAttribute. parseType(java.lang.String sig, SignatureAttribute.Cursor c)
static SignatureAttribute.Type
SignatureAttribute. toTypeSignature(java.lang.String sig)
Parses the given signature string as a type signature.Methods in javassist.bytecode with parameters of type SignatureAttribute.Type Modifier and Type Method Description (package private) static void
SignatureAttribute.Type. toString(java.lang.StringBuilder sbuf, SignatureAttribute.Type[] ts)
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.
-