Package io.joynr.util
Class AnnotationUtil
- java.lang.Object
-
- io.joynr.util.AnnotationUtil
-
public class AnnotationUtil extends Object
-
-
Constructor Summary
Constructors Constructor Description AnnotationUtil()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static <T extends Annotation>
TgetAnnotation(Class<?> clazz, Class<T> annotationType)static <T extends Annotation>
TgetAnnotation(Method method, Class<T> annotationType)static Collection<Annotation>getAnnotationsRecursive(Class<?> clazz)
-
-
-
Method Detail
-
getAnnotationsRecursive
public static Collection<Annotation> getAnnotationsRecursive(Class<?> clazz)
-
getAnnotation
public static <T extends Annotation> T getAnnotation(Class<?> clazz, Class<T> annotationType)
-
getAnnotation
public static <T extends Annotation> T getAnnotation(Method method, Class<T> annotationType)
-
-