Interface IModifierList
-
- All Known Implementing Classes:
JavaAsmModifierList,JavaSourceModifierList
public interface IModifierList
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IAnnotationInfogetAnnotation(Class annotationClass)IAnnotationInfo[]getAnnotations()intgetModifiers()booleanhasModifier(int modifierType)Returns true if this list has the modifier and false otherwise.booleanisAnnotationPresent(Class<? extends Annotation> annotationClass)
-
-
-
Method Detail
-
getAnnotations
IAnnotationInfo[] getAnnotations()
-
getAnnotation
IAnnotationInfo getAnnotation(Class annotationClass)
-
isAnnotationPresent
boolean isAnnotationPresent(Class<? extends Annotation> annotationClass)
-
hasModifier
boolean hasModifier(int modifierType)
Returns true if this list has the modifier and false otherwise.- Parameters:
modifierType- one of the constants of java.lang.reflect.Modifier
-
getModifiers
int getModifiers()
-
-