Java org.objectweb.asm.signature SignatureVisitor fields, constructors, methods, implement or subclass

Example usage for Java org.objectweb.asm.signature SignatureVisitor fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.objectweb.asm.signature SignatureVisitor.

The text is from its open source code.

Subclass

org.objectweb.asm.signature.SignatureVisitor has subclasses.
Click this link to see all its subclasses.

Implementation

org.objectweb.asm.signature.SignatureVisitor has the following implementations.
Click this link to see all its implementation.

Field

charEXTENDS
Wildcard for an "extends" type argument.
charSUPER
Wildcard for a "super" type argument.
charINSTANCEOF
Wildcard for a normal type argument.

Constructor

SignatureVisitor(final int api)
Constructs a new SignatureVisitor .

Method

SignatureVisitorvisitArrayType()
Visits a signature corresponding to an array type.
voidvisitBaseType(final char descriptor)
Visits a signature corresponding to a primitive type.
voidvisitClassType(final String name)
Starts the visit of a signature corresponding to a class or interface type.
voidvisitEnd()
Ends the visit of a signature corresponding to a class or interface type.
voidvisitInnerClassType(final String name)
Visits an inner class.
SignatureVisitorvisitInterface()
Visits the type of an interface implemented by the class.
SignatureVisitorvisitReturnType()
Visits the return type of the method.
SignatureVisitorvisitTypeArgument(final char wildcard)
Visits a type argument of the last visited class or inner class type.
voidvisitTypeArgument()
Visits an unbounded type argument of the last visited class or inner class type.
voidvisitTypeVariable(final String name)
Visits a signature corresponding to a type variable.