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.Fields in javassist.bytecode declared as SignatureAttribute.ObjectTypeModifier and TypeFieldDescription(package private) SignatureAttribute.ObjectType
SignatureAttribute.TypeArgument.arg
(package private) SignatureAttribute.ObjectType[]
SignatureAttribute.MethodSignature.exceptions
(package private) SignatureAttribute.ObjectType
SignatureAttribute.TypeParameter.superClass
(package private) SignatureAttribute.ObjectType[]
SignatureAttribute.TypeParameter.superInterfaces
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.private static SignatureAttribute.ObjectType
SignatureAttribute.parseArray
(String sig, SignatureAttribute.Cursor c) private static SignatureAttribute.ObjectType
SignatureAttribute.parseObjectType
(String sig, SignatureAttribute.Cursor c, boolean dontThrow) 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
.(package private)
TypeArgument
(SignatureAttribute.ObjectType a, char w) (package private)
TypeParameter
(String sig, int nb, int ne, SignatureAttribute.ObjectType sc, SignatureAttribute.ObjectType[] si) TypeParameter
(String name, SignatureAttribute.ObjectType superClass, SignatureAttribute.ObjectType[] superInterfaces) Constructs aTypeParameter
representing a type parametre like<T extends ...