Uses of Class
javassist.bytecode.SignatureAttribute.ObjectType
Packages that use SignatureAttribute.ObjectType
-
Uses of SignatureAttribute.ObjectType in javassist.bytecode
Subclasses of SignatureAttribute.ObjectType in javassist.bytecodeModifier and TypeClassDescriptionstatic class
Array types.static class
Class types.static class
Nested class types.static class
Type variables.Methods in javassist.bytecode that return SignatureAttribute.ObjectTypeModifier and TypeMethodDescriptionSignatureAttribute.TypeParameter.getClassBound()
Returns the class bound of this parameter.SignatureAttribute.MethodSignature.getExceptionTypes()
Returns the types of the exceptions that may be thrown.SignatureAttribute.TypeParameter.getInterfaceBound()
Returns the interface bound of this parameter.SignatureAttribute.TypeArgument.getType()
Returns the type represented by this argument if the argument is not a wildcard type.SignatureAttribute.toFieldSignature
(String sig) Parses the given signature string as a field type signature.Methods in javassist.bytecode with parameters of type SignatureAttribute.ObjectTypeModifier and TypeMethodDescriptionSignatureAttribute.TypeArgument.subclassOf
(SignatureAttribute.ObjectType t) A factory method constructing aTypeArgument
with an upper bound.SignatureAttribute.TypeArgument.superOf
(SignatureAttribute.ObjectType t) A factory method constructing aTypeArgument
with an lower bound.Constructors in javassist.bytecode with parameters of type SignatureAttribute.ObjectTypeModifierConstructorDescriptionMethodSignature
(SignatureAttribute.TypeParameter[] tp, SignatureAttribute.Type[] params, SignatureAttribute.Type ret, SignatureAttribute.ObjectType[] ex) Constructs a method type signature.Constructs aTypeArgument
.TypeParameter
(String name, SignatureAttribute.ObjectType superClass, SignatureAttribute.ObjectType[] superInterfaces) Constructs aTypeParameter
representing a type parametre like<T extends ...