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.

See:
          Description

Class Summary
NoClass Marker class used with annotations to indicate "no class".
 

Enum Summary
JsonSerialize.Inclusion Enumeration used with JsonSerialize.include() property to define which properties of Java Beans are to be included in serialization
JsonSerialize.Typing Enumeration used with JsonSerialize.typing() property to define whether type detection is based on dynamic runtime type (DYNAMIC) or declared type (STATIC).
 

Annotation Types Summary
JsonCachable Marker annotation used to denote whether given instance (currently only used with JsonDeserializer) can be cached.
JsonDeserialize Annotation use for configuring deserialization aspects, by attaching to "setter" methods or fields, or to value classes.
JsonSerialize Annotation used for configuring serialization aspects, by attaching to "getter" methods or fields, or to value classes.
JsonTypeIdResolver Annotation that can be used to plug a custom type identifier handler (TypeIdResolver) to be used by TypeSerializers and TypeDeserializers for converting between java types and type id included in JSON content.
JsonTypeResolver 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)
JsonView Annotation used for indicating view(s) that the property that is defined by method or field annotated is part of.
 

Package org.codehaus.jackson.map.annotate Description

Annotations that directly depend on Mapper classes (not just Jackson core) and are used for configuring Data Mapping functionality.