Package org.codehaus.jackson.map.annotate
package org.codehaus.jackson.map.annotate
Annotations that directly depend on Mapper classes (not just
Jackson core) and are used for configuring Data Mapping functionality.
-
ClassDescriptionJackson-specific annotation used for indicating that value of annotated property will be "injected", i.e.Marker interface used to indicate implementation classes (serializers, deserializers etc) that are standard ones Jackson uses; not custom ones that application has added.Marker annotation used to denote whether given instance (currently only used with
JsonDeserializer
) can be cached.Annotation use for configuring deserialization aspects, by attaching to "setter" methods or fields, or to value classes.Annotation used to indicate which logical filter is to be used for filtering out properties of type (class) annotated; association made by this annotation declaring ids of filters, andObjectMapper
(or objects it delegates to) providing matching filters by id.Annotation similar toXmlRootElement
, used to indicate name to use for root-level wrapping, if wrapping is enabled.Annotation used for configuring serialization aspects, by attaching to "getter" methods or fields, or to value classes.Enumeration used withJsonSerialize.include()
property to define which properties of Java Beans are to be included in serializationEnumeration used withJsonSerialize.typing()
property to define whether type detection is based on dynamic runtime type (DYNAMIC) or declared type (STATIC).Annotation that can be used to plug a custom type identifier handler (TypeIdResolver
) to be used byTypeSerializer
s andTypeDeserializer
s for converting between java types and type id included in JSON content.Annotation that can be used to explicitly define custom resolver used for handling serialization and deserialization of type information, needed for handling of polymorphic types (or sometimes just for linking abstract types to concrete types)Annotation that can be used to indicate aValueInstantiator
to use for creating instances of specified type.Annotation used for indicating view(s) that the property that is defined by method or field annotated is part of.Marker class used with annotations to indicate "no class".