Class Type
java.lang.Object
com.googlecode.aviator.asm.Type
A Java field or method type. This class can be used to make it easier to manipulate type and
method descriptors.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intThe sort of array reference types.static final intThe sort of the boolean type.static final TypeThe boolean type.private final char[]A buffer containing the internal name of this Java type.static final intThe sort of the byte type.static final TypeThe byte type.static final intThe sort of the char type.static final TypeThe char type.static final intThe sort of the double type.static final TypeThe double type.static final intThe sort of the float type.static final TypeThe float type.static final intThe sort of the int type.static final TypeThe int type.private final intThe length of the internal name of this Java type.static final intThe sort of the long type.static final TypeThe long type.static final intThe sort of method types.static final intThe sort of object reference types.private final intThe offset of the internal name of this Java type inbufor, for primitive types, the size, descriptor and getOpcode offsets for this type (byte 0 contains the size, byte 1 the descriptor, byte 2 the offset for IALOAD or IASTORE, byte 3 the offset for all other instructions).static final intThe sort of the short type.static final TypeThe short type.private final intThe sort of this Java type.static final intThe sort of the void type.static final TypeThe void type. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprivateType(int sort, char[] buf, int off, int len) Constructs a reference type. -
Method Summary
Modifier and TypeMethodDescriptionbooleanTests if the given object is equal to this type.intReturns the size of the arguments and of the return value of methods of this type.static intComputes the size of the arguments and of the return value of a method.Type[]Returns the argument types of methods of this type.static Type[]getArgumentTypes(Method method) Returns the Java types corresponding to the argument types of the given method.static Type[]getArgumentTypes(String methodDescriptor) Returns the Java types corresponding to the argument types of the given method descriptor.Returns the binary name of the class corresponding to this type.static StringReturns the descriptor corresponding to the given constructor.Returns the descriptor corresponding to this Java type.static StringgetDescriptor(Class<?> c) Returns the descriptor corresponding to the given Java type.private voidAppends the descriptor corresponding to this Java type to the given string buffer.private static voidgetDescriptor(StringBuilder buf, Class<?> c) Appends the descriptor of the given class to the given string buffer.intReturns the number of dimensions of this array type.Returns the type of the elements of this array type.Returns the internal name of the class corresponding to this object or array type.static StringgetInternalName(Class<?> c) Returns the internal name of the given class.static StringgetMethodDescriptor(Type returnType, Type... argumentTypes) Returns the descriptor corresponding to the given argument and return types.static StringReturns the descriptor corresponding to the given method.static TypegetMethodType(Type returnType, Type... argumentTypes) Returns the Java method type corresponding to the given argument and return types.static TypegetMethodType(String methodDescriptor) Returns the Java type corresponding to the given method descriptor.static TypegetObjectType(String internalName) Returns the Java type corresponding to the given internal name.intgetOpcode(int opcode) Returns a JVM instruction opcode adapted to this Java type.Returns the return type of methods of this type.static TypegetReturnType(Method method) Returns the Java type corresponding to the return type of the given method.static TypegetReturnType(String methodDescriptor) Returns the Java type corresponding to the return type of the given method descriptor.intgetSize()Returns the size of values of this type.intgetSort()Returns the sort of this Java type.private static TypegetType(char[] buf, int off) Returns the Java type corresponding to the given type descriptor.static TypeReturns the Java type corresponding to the given class.static TypegetType(Constructor<?> c) Returns the Java method type corresponding to the given constructor.static TypeReturns the Java method type corresponding to the given method.static TypeReturns the Java type corresponding to the given type descriptor.inthashCode()Returns a hash code value for this type.toString()Returns a string representation of this type.
-
Field Details
-
VOID
-
BOOLEAN
-
CHAR
-
BYTE
-
SHORT
-
INT
-
FLOAT
-
LONG
-
DOUBLE
-
ARRAY
-
OBJECT
-
METHOD
-
VOID_TYPE
The void type. -
BOOLEAN_TYPE
The boolean type. -
CHAR_TYPE
The char type. -
BYTE_TYPE
The byte type. -
SHORT_TYPE
The short type. -
INT_TYPE
The int type. -
FLOAT_TYPE
The float type. -
LONG_TYPE
The long type. -
DOUBLE_TYPE
The double type. -
sort
private final int sortThe sort of this Java type. -
buf
private final char[] bufA buffer containing the internal name of this Java type. This field is only used for reference types. -
off
private final int offThe offset of the internal name of this Java type inbufor, for primitive types, the size, descriptor and getOpcode offsets for this type (byte 0 contains the size, byte 1 the descriptor, byte 2 the offset for IALOAD or IASTORE, byte 3 the offset for all other instructions). -
len
private final int lenThe length of the internal name of this Java type.
-
-
Constructor Details
-
Type
private Type(int sort, char[] buf, int off, int len) Constructs a reference type.- Parameters:
sort- the sort of the reference type to be constructed.buf- a buffer containing the descriptor of the previous type.off- the offset of this descriptor in the previous buffer.len- the length of this descriptor.
-
-
Method Details
-
getType
-
getObjectType
-
getMethodType
-
getMethodType
Returns the Java method type corresponding to the given argument and return types.- Parameters:
returnType- the return type of the method.argumentTypes- the argument types of the method.- Returns:
- the Java type corresponding to the given argument and return types.
-
getType
-
getType
Returns the Java method type corresponding to the given constructor.- Parameters:
c- aConstructorobject.- Returns:
- the Java method type corresponding to the given constructor.
-
getType
-
getArgumentTypes
-
getArgumentTypes
-
getReturnType
-
getReturnType
-
getArgumentsAndReturnSizes
Computes the size of the arguments and of the return value of a method.- Parameters:
desc- the descriptor of a method.- Returns:
- the size of the arguments of the method (plus one for the implicit this argument), argSize, and the size of its return value, retSize, packed into a single int i = (argSize invalid input: '<'invalid input: '<' 2) | retSize (argSize is therefore equal to i >> 2, and retSize to i invalid input: '&' 0x03).
-
getType
Returns the Java type corresponding to the given type descriptor. For method descriptors, buf is supposed to contain nothing more than the descriptor itself.- Parameters:
buf- a buffer containing a type descriptor.off- the offset of this descriptor in the previous buffer.- Returns:
- the Java type corresponding to the given type descriptor.
-
getSort
-
getDimensions
public int getDimensions()Returns the number of dimensions of this array type. This method should only be used for an array type.- Returns:
- the number of dimensions of this array type.
-
getElementType
Returns the type of the elements of this array type. This method should only be used for an array type.- Returns:
- Returns the type of the elements of this array type.
-
getClassName
Returns the binary name of the class corresponding to this type. This method must not be used on method types.- Returns:
- the binary name of the class corresponding to this type.
-
getInternalName
Returns the internal name of the class corresponding to this object or array type. The internal name of a class is its fully qualified name (as returned by Class.getName(), where '.' are replaced by '/'. This method should only be used for an object or array type.- Returns:
- the internal name of the class corresponding to this object type.
-
getArgumentTypes
Returns the argument types of methods of this type. This method should only be used for method types.- Returns:
- the argument types of methods of this type.
-
getReturnType
Returns the return type of methods of this type. This method should only be used for method types.- Returns:
- the return type of methods of this type.
-
getArgumentsAndReturnSizes
public int getArgumentsAndReturnSizes()Returns the size of the arguments and of the return value of methods of this type. This method should only be used for method types.- Returns:
- the size of the arguments (plus one for the implicit this argument), argSize, and the size of the return value, retSize, packed into a single int i = (argSize invalid input: '<'invalid input: '<' 2) | retSize (argSize is therefore equal to i >> 2, and retSize to i invalid input: '&' 0x03).
-
getDescriptor
Returns the descriptor corresponding to this Java type.- Returns:
- the descriptor corresponding to this Java type.
-
getMethodDescriptor
Returns the descriptor corresponding to the given argument and return types.- Parameters:
returnType- the return type of the method.argumentTypes- the argument types of the method.- Returns:
- the descriptor corresponding to the given argument and return types.
-
getDescriptor
Appends the descriptor corresponding to this Java type to the given string buffer.- Parameters:
buf- the string buffer to which the descriptor must be appended.
-
getInternalName
Returns the internal name of the given class. The internal name of a class is its fully qualified name, as returned by Class.getName(), where '.' are replaced by '/'.- Parameters:
c- an object or array class.- Returns:
- the internal name of the given class.
-
getDescriptor
-
getConstructorDescriptor
Returns the descriptor corresponding to the given constructor.- Parameters:
c- aConstructorobject.- Returns:
- the descriptor of the given constructor.
-
getMethodDescriptor
-
getDescriptor
Appends the descriptor of the given class to the given string buffer.- Parameters:
buf- the string buffer to which the descriptor must be appended.c- the class whose descriptor must be computed.
-
getSize
public int getSize()Returns the size of values of this type. This method must not be used for method types.- Returns:
- the size of values of this type, i.e., 2 for long and double, 0 for void and 1 otherwise.
-
getOpcode
public int getOpcode(int opcode) Returns a JVM instruction opcode adapted to this Java type. This method must not be used for method types.- Parameters:
opcode- a JVM instruction opcode. This opcode must be one of ILOAD, ISTORE, IALOAD, IASTORE, IADD, ISUB, IMUL, IDIV, IREM, INEG, ISHL, ISHR, IUSHR, IAND, IOR, IXOR and IRETURN.- Returns:
- an opcode that is similar to the given opcode, but adapted to this Java type. For example, if this type is float and opcode is IRETURN, this method returns FRETURN.
-
equals
-
hashCode
-
toString
-