Uses of Class
javassist.bytecode.SignatureAttribute.ObjectType
-
Packages that use SignatureAttribute.ObjectType Package Description javassist.bytecode Bytecode-level API. -
-
Uses of SignatureAttribute.ObjectType in javassist.bytecode
Subclasses of SignatureAttribute.ObjectType in javassist.bytecode Modifier and Type Class Description static classSignatureAttribute.ArrayTypeArray types.static classSignatureAttribute.ClassTypeClass types.static classSignatureAttribute.NestedClassTypeNested class types.static classSignatureAttribute.TypeVariableType variables.Methods in javassist.bytecode that return SignatureAttribute.ObjectType Modifier and Type Method Description SignatureAttribute.ObjectTypeSignatureAttribute.TypeParameter. getClassBound()Returns the class bound of this parameter.SignatureAttribute.ObjectType[]SignatureAttribute.MethodSignature. getExceptionTypes()Returns the types of the exceptions that may be thrown.SignatureAttribute.ObjectType[]SignatureAttribute.TypeParameter. getInterfaceBound()Returns the interface bound of this parameter.SignatureAttribute.ObjectTypeSignatureAttribute.TypeArgument. getType()Returns the type represented by this argument if the argument is not a wildcard type.static SignatureAttribute.ObjectTypeSignatureAttribute. toFieldSignature(String sig)Parses the given signature string as a field type signature.Methods in javassist.bytecode with parameters of type SignatureAttribute.ObjectType Modifier and Type Method Description static SignatureAttribute.TypeArgumentSignatureAttribute.TypeArgument. subclassOf(SignatureAttribute.ObjectType t)A factory method constructing aTypeArgumentwith an upper bound.static SignatureAttribute.TypeArgumentSignatureAttribute.TypeArgument. superOf(SignatureAttribute.ObjectType t)A factory method constructing aTypeArgumentwith an lower bound.Constructors in javassist.bytecode with parameters of type SignatureAttribute.ObjectType Constructor Description MethodSignature(SignatureAttribute.TypeParameter[] tp, SignatureAttribute.Type[] params, SignatureAttribute.Type ret, SignatureAttribute.ObjectType[] ex)Constructs a method type signature.TypeArgument(SignatureAttribute.ObjectType t)Constructs aTypeArgument.TypeParameter(String name, SignatureAttribute.ObjectType superClass, SignatureAttribute.ObjectType[] superInterfaces)Constructs aTypeParameterrepresenting a type parametre like<T extends ...
-