Uses of Class
com.uwyn.rife.continuations.asm.Type

Packages that use Type
com.uwyn.rife.continuations.asm Provides a small and fast bytecode manipulation framework. 
 

Uses of Type in com.uwyn.rife.continuations.asm
 

Fields in com.uwyn.rife.continuations.asm declared as Type
static Type Type.VOID_TYPE
          The void type.
static Type Type.BOOLEAN_TYPE
          The boolean type.
static Type Type.CHAR_TYPE
          The char type.
static Type Type.BYTE_TYPE
          The byte type.
static Type Type.SHORT_TYPE
          The short type.
static Type Type.INT_TYPE
          The int type.
static Type Type.FLOAT_TYPE
          The float type.
static Type Type.LONG_TYPE
          The long type.
static Type Type.DOUBLE_TYPE
          The double type.
 

Methods in com.uwyn.rife.continuations.asm that return Type
static Type Type.getType(String typeDescriptor)
          Returns the Java type corresponding to the given type descriptor.
static Type Type.getType(Class c)
          Returns the Java type corresponding to the given class.
static Type[] Type.getArgumentTypes(String methodDescriptor)
          Returns the Java types corresponding to the argument types of the given method descriptor.
static Type[] Type.getArgumentTypes(Method method)
          Returns the Java types corresponding to the argument types of the given method.
static Type Type.getReturnType(String methodDescriptor)
          Returns the Java type corresponding to the return type of the given method descriptor.
static Type Type.getReturnType(Method method)
          Returns the Java type corresponding to the return type of the given method.
 Type Type.getElementType()
          Returns the type of the elements of this array type.
 

Methods in com.uwyn.rife.continuations.asm with parameters of type Type
static String Type.getMethodDescriptor(Type returnType, Type[] argumentTypes)
          Returns the descriptor corresponding to the given argument and return types.
 


RIFE Project Page