Type[] |
Type.getArgumentTypes() |
Returns the argument types of methods of this type.
|
static Type[] |
Type.getArgumentTypes(java.lang.reflect.Method method) |
Returns the Java types corresponding to the argument types of the given
method.
|
static Type[] |
Type.getArgumentTypes(java.lang.String methodDescriptor) |
Returns the Java types corresponding to the argument types of the given
method descriptor.
|
Type |
Type.getElementType() |
Returns the type of the elements of this array type.
|
static Type |
Type.getMethodType(java.lang.String methodDescriptor) |
Returns the Java type corresponding to the given method descriptor.
|
static Type |
Type.getMethodType(Type returnType,
Type... argumentTypes) |
Returns the Java method type corresponding to the given argument and
return types.
|
static Type |
Type.getObjectType(java.lang.String internalName) |
Returns the Java type corresponding to the given internal name.
|
Type |
Type.getReturnType() |
Returns the return type of methods of this type.
|
static Type |
Type.getReturnType(java.lang.reflect.Method method) |
Returns the Java type corresponding to the return type of the given
method.
|
static Type |
Type.getReturnType(java.lang.String methodDescriptor) |
Returns the Java type corresponding to the return type of the given
method descriptor.
|
private static Type |
Type.getType(char[] buf,
int off) |
Returns the Java type corresponding to the given type descriptor.
|
static Type |
Type.getType(java.lang.Class<?> c) |
Returns the Java type corresponding to the given class.
|
static Type |
Type.getType(java.lang.reflect.Constructor<?> c) |
Returns the Java method type corresponding to the given constructor.
|
static Type |
Type.getType(java.lang.reflect.Method m) |
Returns the Java method type corresponding to the given method.
|
static Type |
Type.getType(java.lang.String typeDescriptor) |
Returns the Java type corresponding to the given type descriptor.
|