Home
last modified time | relevance | path

Searched refs:getAnnotationsByType (Results 1 – 4 of 4) sorted by relevance

/libcore/ojluni/src/main/java/java/lang/reflect/
DAnnotatedElement.java143 default <T extends Annotation> T[] getAnnotationsByType(Class<T> annotationClass) { in getAnnotationsByType() method
144 return AnnotatedElements.getAnnotationsByType(this, annotationClass); in getAnnotationsByType()
/libcore/luni/src/main/java/libcore/reflect/
DAnnotatedElements.java196 public static <T extends Annotation> T[] getAnnotationsByType(AnnotatedElement element, in getAnnotationsByType() method in AnnotatedElements
/libcore/ojluni/src/main/java/java/lang/
DPackage.java407 public <A extends Annotation> A[] getAnnotationsByType(Class<A> annotationClass) { in getAnnotationsByType() method in Package
408 return getPackageInfo().getAnnotationsByType(annotationClass); in getAnnotationsByType()
DClass.java2440 public <T extends Annotation> T[] getAnnotationsByType(Class<T> annotationClass) { in getAnnotationsByType() method in Class
2442 T[] annotations = AnnotatedElement.super.getAnnotationsByType(annotationClass); in getAnnotationsByType()
2459 return superClass.getAnnotationsByType(annotationClass); in getAnnotationsByType()