Package javassist.bytecode.analysis
Class MultiArrayType
- java.lang.Object
-
- javassist.bytecode.analysis.Type
-
- javassist.bytecode.analysis.MultiArrayType
-
-
Constructor Summary
Constructors Constructor Description MultiArrayType(MultiType component, int dims)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)TypegetComponent()Returns the array component if this type is an array.CtClassgetCtClass()Returns the class this type represents.intgetDimensions()Returns the number of dimensions of this array.intgetSize()Gets the word size of this type.inthashCode()booleanisArray()Returns whether or not this type is an array.booleanisAssignableFrom(Type type)Determines whether this type is assignable, to the passed type.booleanisAssignableTo(Type type)booleanisReference()Returns whether or not this type is a normal java reference, i.e.StringtoString()
-
-
-
Constructor Detail
-
MultiArrayType
public MultiArrayType(MultiType component, int dims)
-
-
Method Detail
-
getCtClass
public CtClass getCtClass()
Description copied from class:TypeReturns the class this type represents. If the type is special, null will be returned.- Overrides:
getCtClassin classType- Returns:
- the class for this type, or null if special
-
getDimensions
public int getDimensions()
Description copied from class:TypeReturns the number of dimensions of this array. If the type is not an array zero is returned.- Overrides:
getDimensionsin classType- Returns:
- zero if not an array, otherwise the number of array dimensions.
-
getComponent
public Type getComponent()
Description copied from class:TypeReturns the array component if this type is an array. If the type is not an array null is returned.- Overrides:
getComponentin classType- Returns:
- the array component if an array, otherwise null
-
getSize
public int getSize()
Description copied from class:TypeGets the word size of this type. Double-word types, such as long and double will occupy two positions on the local variable table or stack.
-
isArray
public boolean isArray()
Description copied from class:TypeReturns whether or not this type is an array.
-
isAssignableFrom
public boolean isAssignableFrom(Type type)
Description copied from class:TypeDetermines whether this type is assignable, to the passed type. A type is assignable to another if it is either the same type, or a sub-type.- Overrides:
isAssignableFromin classType- Parameters:
type- the type to test assignability to- Returns:
- true if this is assignable to type, otherwise false
-
isReference
public boolean isReference()
Description copied from class:TypeReturns whether or not this type is a normal java reference, i.e. it is or extends java.lang.Object.- Overrides:
isReferencein classType- Returns:
- true if a java reference, false if a primitive or special
-
isAssignableTo
public boolean isAssignableTo(Type type)
-
-