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.Fields in javassist.bytecode declared as SignatureAttribute.ObjectType Modifier and Type Field Description (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.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.private static SignatureAttribute.ObjectTypeSignatureAttribute. parseArray(java.lang.String sig, SignatureAttribute.Cursor c)private static SignatureAttribute.ObjectTypeSignatureAttribute. parseObjectType(java.lang.String sig, SignatureAttribute.Cursor c, boolean dontThrow)static SignatureAttribute.ObjectTypeSignatureAttribute. toFieldSignature(java.lang.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.TypeArgument(SignatureAttribute.ObjectType a, char w)TypeParameter(java.lang.String sig, int nb, int ne, SignatureAttribute.ObjectType sc, SignatureAttribute.ObjectType[] si)TypeParameter(java.lang.String name, SignatureAttribute.ObjectType superClass, SignatureAttribute.ObjectType[] superInterfaces)Constructs aTypeParameterrepresenting a type parametre like<T extends ...
-