Package gw.lang.reflect.java.asm
Interface IAsmType
-
- All Known Implementing Classes:
AsmClass
,AsmInnerClassType
,AsmPrimitiveType
,AsmType
,AsmWildcardType
public interface IAsmType
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IAsmType
getComponentType()
String
getFqn()
String
getName()
IAsmType
getRawType()
String
getSimpleName()
List<AsmType>
getTypeParameters()
boolean
isArray()
boolean
isParameterized()
boolean
isPrimitive()
boolean
isTypeVariable()
-
-
-
Method Detail
-
getName
String getName()
-
getSimpleName
String getSimpleName()
-
isParameterized
boolean isParameterized()
-
isArray
boolean isArray()
-
isTypeVariable
boolean isTypeVariable()
-
isPrimitive
boolean isPrimitive()
-
getFqn
String getFqn()
-
getRawType
IAsmType getRawType()
-
getComponentType
IAsmType getComponentType()
-
-