Java com.google.gwt.dev.asm Type fields, constructors, methods, implement or subclass

Example usage for Java com.google.gwt.dev.asm Type fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.google.gwt.dev.asm Type.

The text is from its open source code.

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 type.
TypeVOID_TYPE
The void type.

Method

booleanequals(final Object o)
Tests if the given object is equal to this type.
Type[]getArgumentTypes(final String methodDescriptor)
Returns the Java types corresponding to the argument types of the given method descriptor.
Type[]getArgumentTypes(final Method method)
Returns the Java types corresponding to the argument types of the given method.
StringgetClassName()
Returns the name of the class corresponding to this type.
StringgetDescriptor()
Returns the descriptor corresponding to this Java 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.
TypegetObjectType(final String internalName)
Returns the Java type corresponding to the given internal name.
intgetOpcode(final int opcode)
Returns a JVM instruction opcode adapted to this Java type.
intgetSize()
Returns the size of values of this type.
intgetSort()
Returns the sort of this Java type.
TypegetType(final String typeDescriptor)
Returns the Java type corresponding to the given type descriptor.
TypegetType(final Class c)
Returns the Java type corresponding to the given class.