Package gw.lang.reflect.java.asm
Class AsmField
- java.lang.Object
-
- gw.lang.reflect.java.asm.AsmField
-
public class AsmField extends Object
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AsmAnnotationgetAnnotation(Class annotationClass)List<AsmAnnotation>getAnnotations()AsmClassgetDeclaringClass()intgetModifiers()StringgetName()ObjectgetStaticValue()AsmTypegetType()booleanisAnnotationPresent(Class<? extends Annotation> annotationClass)booleanisEnumConstant()booleanisSynthetic()voidsetType(AsmType type)StringtoString()
-
-
-
Method Detail
-
getName
public String getName()
-
getModifiers
public int getModifiers()
-
isSynthetic
public boolean isSynthetic()
-
isEnumConstant
public boolean isEnumConstant()
-
getType
public AsmType getType()
-
setType
public void setType(AsmType type)
-
getDeclaringClass
public AsmClass getDeclaringClass()
-
getAnnotations
public List<AsmAnnotation> getAnnotations()
-
isAnnotationPresent
public boolean isAnnotationPresent(Class<? extends Annotation> annotationClass)
-
getAnnotation
public AsmAnnotation getAnnotation(Class annotationClass)
-
getStaticValue
public Object getStaticValue()
-
-