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 classArray types.static classClass types.static classNested class types.static classType variables.Fields in javassist.bytecode declared as SignatureAttribute.ObjectTypeModifier and TypeFieldDescription(package private) SignatureAttribute.ObjectTypeSignatureAttribute.TypeArgument.arg(package private) SignatureAttribute.ObjectType[]SignatureAttribute.MethodSignature.exceptions(package private) SignatureAttribute.ObjectTypeSignatureAttribute.TypeParameter.superClass(package private) SignatureAttribute.ObjectType[]SignatureAttribute.TypeParameter.superInterfacesMethods 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.ObjectTypeSignatureAttribute.parseArray(String sig, SignatureAttribute.Cursor c) private static SignatureAttribute.ObjectTypeSignatureAttribute.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 aTypeArgumentwith an upper bound.SignatureAttribute.TypeArgument.superOf(SignatureAttribute.ObjectType t) A factory method constructing aTypeArgumentwith 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 aTypeParameterrepresenting a type parametre like<T extends ...