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 AsmAnnotation
getAnnotation(Class annotationClass)
List<AsmAnnotation>
getAnnotations()
AsmClass
getDeclaringClass()
int
getModifiers()
String
getName()
Object
getStaticValue()
AsmType
getType()
boolean
isAnnotationPresent(Class<? extends Annotation> annotationClass)
boolean
isEnumConstant()
boolean
isSynthetic()
void
setType(AsmType type)
String
toString()
-
-
-
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()
-
-