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

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

Introduction

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

The text is from its open source code.

Subclass

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

Field

intVOID
The sort of the void type.
intBOOLEAN
The sort of the boolean type.
intCHAR
The sort of the char type.
intBYTE
The sort of the byte type.
intSHORT
The sort of the short type.
intINT
The sort of the int type.
intFLOAT
The sort of the float type.
intLONG
The sort of the long type.
intDOUBLE
The sort of the double type.
intARRAY
The sort of array reference types.
intOBJECT
The sort of object reference types.
intMETHOD
The sort of method types.
TypeVOID_TYPE
The void type.
TypeBOOLEAN_TYPE
The boolean type.
TypeCHAR_TYPE
The char type.
TypeBYTE_TYPE
The byte type.
TypeSHORT_TYPE
The short type.
TypeINT_TYPE
The int type.
TypeFLOAT_TYPE
The float type.
TypeLONG_TYPE
The long type.
TypeDOUBLE_TYPE
The double type.

Constructor

Method

booleanequals(final Object object)
Tests if the given object is equal to this type.
intgetArgumentsAndReturnSizes(final String methodDescriptor)
Computes the size of the arguments and of the return value of a method.
intgetArgumentsAndReturnSizes()
Returns the size of the arguments and of the return value of methods of this type.
Type[]getArgumentTypes(final String methodDescriptor)
Returns the Type values corresponding to the argument types of the given method descriptor.
Type[]getArgumentTypes(final Method method)
Returns the Type values corresponding to the argument types of the given method.
Type[]getArgumentTypes()
Returns the argument types of methods of this type.
StringgetClassName()
Returns the binary name of the class corresponding to this type.
StringgetConstructorDescriptor(final Constructor constructor)
Returns the descriptor corresponding to the given constructor.
StringgetDescriptor(final Class clazz)
Returns the descriptor corresponding to the given class.
StringgetDescriptor()
Returns the descriptor corresponding to this type.
intgetDimensions()
Returns the number of dimensions of this array type.
TypegetElementType()
Returns the type of the elements of this array type.
StringgetInternalName()
Returns the internal name of the class corresponding to this object or array type.
StringgetInternalName(final Class clazz)
Returns the internal name of the given class.
StringgetMethodDescriptor(final Type returnType, final Type... argumentTypes)
Returns the descriptor corresponding to the given argument and return types.
StringgetMethodDescriptor(final Method method)
Returns the descriptor corresponding to the given method.
TypegetMethodType(final String methodDescriptor)
Returns the Type corresponding to the given method descriptor.
TypegetMethodType(final Type returnType, final Type... argumentTypes)
Returns the method Type corresponding to the given argument and return types.
TypegetObjectType(final String internalName)
Returns the Type corresponding to the given internal name.
intgetOpcode(final int opcode)
Returns a JVM instruction opcode adapted to this Type .
TypegetReturnType(final String methodDescriptor)
Returns the Type corresponding to the return type of the given method descriptor.
TypegetReturnType(final Method method)
Returns the Type corresponding to the return type of the given method.
TypegetReturnType()
Returns the return type of methods of this type.
intgetSize()
Returns the size of values of this type.
intgetSort()
Returns the sort of this type.
TypegetType(final String typeDescriptor)
Returns the Type corresponding to the given type descriptor.
TypegetType(final Class clazz)
Returns the Type corresponding to the given class.
TypegetType(final Constructor constructor)
Returns the method Type corresponding to the given constructor.
TypegetType(final Method method)
Returns the method Type corresponding to the given method.
inthashCode()
Returns a hash code value for this type.
StringtoString()
Returns a string representation of this type.