Uses of Class
org.codehaus.jackson.map.introspect.AnnotationMap
-
Packages that use AnnotationMap Package Description org.codehaus.jackson.map.introspect Functionality needed for Bean introspection, required for detecting accessors and mutators for Beans, as well as locating and handling method annotations. -
-
Uses of AnnotationMap in org.codehaus.jackson.map.introspect
Fields in org.codehaus.jackson.map.introspect declared as AnnotationMap Modifier and Type Field Description protected AnnotationMapAnnotatedMember. _annotationsprotected AnnotationMapAnnotatedClass. _classAnnotationsCombined list of Jackson annotations that the class has, including inheritable ones from super classes and interfacesprotected AnnotationMap[]AnnotatedWithParams. _paramAnnotationsAnnotations associated with parameters of the annotated entity (method or constructor parameters)Methods in org.codehaus.jackson.map.introspect that return AnnotationMap Modifier and Type Method Description protected AnnotationMapAnnotatedClass. _collectRelevantAnnotations(java.lang.annotation.Annotation[] anns)protected AnnotationMap[]AnnotatedClass. _collectRelevantAnnotations(java.lang.annotation.Annotation[][] anns)protected abstract AnnotationMapAnnotated. getAllAnnotations()protected AnnotationMapAnnotatedClass. getAllAnnotations()protected AnnotationMapAnnotatedMember. getAllAnnotations()AnnotationMapAnnotatedWithParams. getParameterAnnotations(int index)static AnnotationMapAnnotationMap. merge(AnnotationMap primary, AnnotationMap secondary)Methods in org.codehaus.jackson.map.introspect with parameters of type AnnotationMap Modifier and Type Method Description protected voidAnnotatedClass. _addClassMixIns(AnnotationMap annotations, java.lang.Class<?> toMask)Helper method for adding any mix-in annotations specified class might have.protected voidAnnotatedClass. _addClassMixIns(AnnotationMap annotations, java.lang.Class<?> toMask, java.lang.Class<?> mixin)static AnnotationMapAnnotationMap. merge(AnnotationMap primary, AnnotationMap secondary)protected AnnotatedParameterAnnotatedWithParams. replaceParameterAnnotations(int index, AnnotationMap ann)Method called by parameter object when an augmented instance is created; needs to replace parameter with new instanceabstract AnnotatedAnnotated. withAnnotations(AnnotationMap fallback)Fluent factory method that will construct a new instance that uses specified instance annotations instead of currently configured ones.AnnotatedClassAnnotatedClass. withAnnotations(AnnotationMap ann)AnnotatedConstructorAnnotatedConstructor. withAnnotations(AnnotationMap ann)AnnotatedFieldAnnotatedField. withAnnotations(AnnotationMap ann)AnnotatedMethodAnnotatedMethod. withAnnotations(AnnotationMap ann)AnnotatedParameterAnnotatedParameter. withAnnotations(AnnotationMap ann)Constructors in org.codehaus.jackson.map.introspect with parameters of type AnnotationMap Constructor Description AnnotatedConstructor(java.lang.reflect.Constructor<?> constructor, AnnotationMap classAnn, AnnotationMap[] paramAnn)AnnotatedField(java.lang.reflect.Field field, AnnotationMap annMap)AnnotatedMember(AnnotationMap annotations)AnnotatedMethod(java.lang.reflect.Method method, AnnotationMap classAnn, AnnotationMap[] paramAnnotations)AnnotatedParameter(AnnotatedWithParams owner, java.lang.reflect.Type type, AnnotationMap annotations, int index)AnnotatedWithParams(AnnotationMap annotations, AnnotationMap[] paramAnnotations)
-