See: Description
Class | Description |
---|---|
JsonPOJOBuilder.Value |
Simple value container for containing values read from
JsonPOJOBuilder annotation instance. |
NoClass |
Marker class used with annotations to indicate "no class".
|
Enum | Description |
---|---|
JsonSerialize.Inclusion | Deprecated |
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 Type | Description |
---|---|
EnumNaming |
Annotation that can be used to indicate a
EnumNamingStrategy
to use for annotated class. |
JacksonStdImpl |
Marker interface used to indicate implementation classes
(serializers, deserializers etc) that are standard ones Jackson
uses; not custom ones that application has added.
|
JsonAppend |
Annotation used to add "virtual" properties that will be written
after regular properties during serialization.
|
JsonAppend.Attr |
Definition of a single attribute-backed property.
|
JsonAppend.Prop |
Definition of a single general virtual property.
|
JsonDeserialize |
Annotation use for configuring deserialization aspects, by attaching
to "setter" methods or fields, or to value classes.
|
JsonNaming |
Annotation that can be used to indicate a
PropertyNamingStrategy
to use for annotated class. |
JsonPOJOBuilder |
Annotation used to configure details of a Builder class:
instances of which are used as Builders for deserialized
POJO values, instead of POJOs being instantiated using
constructors or factory methods.
|
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
TypeSerializer s
and TypeDeserializer s
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)
NOTE: since 2.4, applicable to properties as well (should have been long time
ago, but problem only found then)
|
JsonValueInstantiator |
Annotation that can be used to indicate a
ValueInstantiator to use
for creating instances of specified type. |
Copyright © 2008–2024 FasterXML. All rights reserved.