Method Summary |
|
public static Annotation | getAnnotation(String annotationName, Class klass) Return the annotation with a specific name for a specific class.
Parameters: annotationName - the annotation name Parameters: klass - the java.lang.Class object to find the annotation on. |
public static Annotation | getAnnotation(Class annotation, Class klass) Return the annotation with a specific name for a specific class.
Parameters: annotation - the annotation class Parameters: klass - the java.lang.Class object to find the annotation on. |
public static Annotation | getAnnotation(String annotationName, Method method) Return the annotation with a specific name for a specific method.
Parameters: annotationName - the annotation name Parameters: method - the java.lang.refect.Method object to find the annotation on. |
public static Annotation | getAnnotation(Class annotation, Method method) Return the annotation with a specific name for a specific method.
Parameters: annotation - the annotation class Parameters: method - the java.lang.refect.Method object to find the annotation on. |
public static Annotation | getAnnotation(String annotationName, Constructor constructor) Return the annotation with a specific name for a specific constructor.
Parameters: annotationName - the annotation name Parameters: constructor - the java.lang.refect.Constructor object to find the annotation on. |
public static Annotation | getAnnotation(Class annotation, Constructor constructor) Return the annotation with a specific name for a specific constructor.
Parameters: annotation - the annotation class Parameters: constructor - the java.lang.refect.Constructor object to find the annotation on. |
public static Annotation | getAnnotation(String annotationName, Field field) Return the annotation with a specific name for a specific field.
Parameters: annotationName - the annotation name Parameters: field - the java.lang.reflect.Field object to find the annotation on. |
public static Annotation | getAnnotation(Class annotation, Field field) Return the annotation with a specific name for a specific field.
Parameters: annotation - the annotation class Parameters: field - the java.lang.reflect.Field object to find the annotation on. |
public static List | getAnnotationInfos(Class klass) Return a list with the annotations for a specific class. |
public static List | getAnnotationInfos(Method method) Return the annotations for a specific method. |
public static List | getAnnotationInfos(Constructor constructor) Return the annotations for a specific constructor. |
public static List | getAnnotationInfos(Field field) Return the annotations for a specific field. |
public static List | getAnnotations(String annotationName, Class klass) Return a list with the annotations with a specific name for a specific class.
Parameters: annotationName - the annotation name Parameters: klass - the java.lang.Class object to find the annotation on. |
public static List | getAnnotations(Class annotation, Class klass) Return a list with the annotations with a specific name for a specific class.
Parameters: annotation - the annotation class Parameters: klass - the java.lang.Class object to find the annotation on. |
public static List | getAnnotations(String annotationName, Method method) Return a list with the annotations with a specific name for a specific method.
Parameters: annotationName - the annotation name Parameters: method - the java.lang.refect.Method object to find the annotation on. |
public static List | getAnnotations(Class annotation, Method method) Return a list with the annotations with a specific name for a specific method.
Parameters: annotation - the annotation class Parameters: method - the java.lang.refect.Method object to find the annotation on. |
public static List | getAnnotations(String annotationName, Constructor constructor) Return a list with the annotations with a specific name for a specific constructor.
Parameters: annotationName - the annotation name Parameters: constructor - the java.lang.refect.Constructor object to find the annotation on. |
public static List | getAnnotations(Class annotation, Constructor constructor) Return a list with the annotations with a specific name for a specific constructor.
Parameters: annotation - the annotation class Parameters: constructor - the java.lang.refect.Constructor object to find the annotation on. |
public static List | getAnnotations(String annotationName, Field field) Return a list with the annotations with a specific name for a specific field.
Parameters: annotationName - the annotation name Parameters: field - the java.lang.reflect.Field object to find the annotation on. |
public static List | getAnnotations(Class annotation, Field field) Return a list with the annotations with a specific name for a specific field.
Parameters: annotation - the annotation class Parameters: field - the java.lang.reflect.Field object to find the annotation on. |