java.lang.Object
tools.jackson.databind.introspect.AnnotationMap
- All Implemented Interfaces:
Annotations
Simple helper class used to keep track of collection of
Jackson Annotations associated with annotatable things
(methods, constructors, classes).
Note that only Jackson-owned annotations are tracked (for now?).
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescription<A extends Annotation>
AMain access method used to find value for given annotation.booleanhas(Class<? extends Annotation> cls) booleanhasOneOf(Class<? extends Annotation>[] annoClasses) Helper method that can be used for a "bulk" check to see if at least one of given annotation types is included within this map.static AnnotationMapmerge(AnnotationMap primary, AnnotationMap secondary) static AnnotationMapof(Class<?> type, Annotation value) static AnnotationMapof(Collection<Annotation> rawAnnotations) intsize()Returns number of annotation entries in this collection.toString()values()Access method that returns a stream of all annotations contained.
-
Field Details
-
_annotations
-
-
Constructor Details
-
AnnotationMap
public AnnotationMap() -
AnnotationMap
-
-
Method Details
-
of
-
of
-
get
Description copied from interface:AnnotationsMain access method used to find value for given annotation.- Specified by:
getin interfaceAnnotations
-
has
- Specified by:
hasin interfaceAnnotations
-
hasOneOf
Helper method that can be used for a "bulk" check to see if at least one of given annotation types is included within this map.- Specified by:
hasOneOfin interfaceAnnotations
-
values
Description copied from interface:AnnotationsAccess method that returns a stream of all annotations contained.- Specified by:
valuesin interfaceAnnotations
-
merge
-
size
public int size()Description copied from interface:AnnotationsReturns number of annotation entries in this collection.- Specified by:
sizein interfaceAnnotations
-
toString
-