Home
last modified time | relevance | path

Searched refs:findClassAnnotations (Results 1 – 3 of 3) sorted by relevance

/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/introspect/
DAnnotatedClassResolver.java247 ClassUtil.findClassAnnotations(_class)); in resolveClassAnnotations()
260 ClassUtil.findClassAnnotations(type.getRawClass())); in resolveClassAnnotations()
281 … annotations = _addAnnotationsIfNotPresent(annotations, ClassUtil.findClassAnnotations(mixin)); in _addClassMixIns()
289 … annotations = _addAnnotationsIfNotPresent(annotations, ClassUtil.findClassAnnotations(parent)); in _addClassMixIns()
315 for (Annotation ann : ClassUtil.findClassAnnotations(bundle.annotationType())) { in _addFromBundleIfNotPresent()
DCollectorBase.java48 Annotation[] anns = ClassUtil.findClassAnnotations(bundle.annotationType()); in collectFromBundle()
87 Annotation[] anns = ClassUtil.findClassAnnotations(bundle.annotationType()); in collectDefaultFromBundle()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/util/
DClassUtil.java1139 public static Annotation[] findClassAnnotations(Class<?> cls) { in findClassAnnotations() method in ClassUtil