Uses of Class
javassist.bytecode.SignatureAttribute.ObjectType
-
Uses of SignatureAttribute.ObjectType in javassist.bytecode
Modifier and TypeClassDescriptionstatic class
Array types.static class
Class types.static class
Nested class types.static class
Type variables.Modifier 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.Modifier 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.ModifierConstructorDescriptionMethodSignature
(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 ...