- JacksonAnnotation - Annotation Type in com.fasterxml.jackson.annotation
-
Meta-annotation (annotations used on other annotations)
used for marking all annotations that are
part of Jackson package.
- JacksonAnnotationValue<A extends Annotation> - Interface in com.fasterxml.jackson.annotation
-
Marker interface used by value classes like JsonFormat.Value that are used
to contain information from one of Jackson annotations, and can be directly
instantiated from those annotations, as well as programmatically constructed
and possibly merged.
- JsonAnyGetter - Annotation Type in com.fasterxml.jackson.annotation
-
Marker annotation that can be used to define a non-static,
no-argument method to be an "any getter"; accessor for getting
a set of key/value pairs, to be serialized as part of containing POJO
(similar to unwrapping) along with regular property values it has.
- JsonAnySetter - Annotation Type in com.fasterxml.jackson.annotation
-
Marker annotation that can be used to define a logical "any setter" mutator --
either using non-static
two-argument method (first argument name of property, second value
to set) or a field (of type
Map or POJO) -
to be used as a "fallback" handler
for all otherwise unrecognized properties found from JSON content.
- JsonAutoDetect - Annotation Type in com.fasterxml.jackson.annotation
-
Class annotation that can be used to define which kinds of Methods
are to be detected by auto-detection, and with what minimum access level.
- JsonAutoDetect.Value - Class in com.fasterxml.jackson.annotation
-
Helper class used to contain information from a single
JsonIgnoreProperties
annotation, as well as to provide possible overrides from non-annotation sources.
- JsonAutoDetect.Visibility - Enum in com.fasterxml.jackson.annotation
-
Enumeration for possible visibility thresholds (minimum visibility)
that can be used to limit which methods (and fields) are
auto-detected.
- JsonCreator - Annotation Type in com.fasterxml.jackson.annotation
-
Marker annotation that can be used to define constructors and factory
methods as one to use for instantiating new instances of the associated
class.
- JsonCreator.Mode - Enum in com.fasterxml.jackson.annotation
-
- JsonDeserialize - Annotation Type in com.fasterxml.jackson.databind.annotation
-
Super source for
JsonDeserialize to remove the use of java.lang.reflect.* classes
- JsonFormat - Annotation Type in com.fasterxml.jackson.annotation
-
General-purpose annotation used for configuring details of how
values of properties are to be serialized.
- JsonFormat.Feature - Enum in com.fasterxml.jackson.annotation
-
Set of features that can be enabled/disabled for property annotated.
- JsonFormat.Shape - Enum in com.fasterxml.jackson.annotation
-
Value enumeration used for indicating preferred Shape; translates
loosely to JSON types, with some extra values to indicate less precise
choices (i.e.
- JsonIdentityInfo - Annotation Type in com.fasterxml.jackson.annotation
-
Annotation used for indicating that values of annotated type
or property should be serializing so that instances either
contain additional object identifier (in addition actual object
properties), or as a reference that consists of an object id
that refers to a full serialization.
- JsonIdentityReference - Annotation Type in com.fasterxml.jackson.annotation
-
Optional annotation that can be used for customizing details of a reference
to Objects for which "Object Identity" is enabled (see
JsonIdentityInfo).
- JsonIgnore - Annotation Type in com.fasterxml.jackson.annotation
-
Marker annotation that indicates that the logical property that
the accessor (field, getter/setter method or Creator parameter
[of
JsonCreator-annotated constructor or factory method])
is to be ignored by introspection-based
serialization and deserialization functionality.
- JsonIgnoreProperties - Annotation Type in com.fasterxml.jackson.annotation
-
Annotation that can be used to either suppress serialization of
properties (during serialization), or ignore processing of
JSON properties read (during deserialization).
- JsonIgnoreProperties.Value - Class in com.fasterxml.jackson.annotation
-
Helper class used to contain information from a single
JsonIgnoreProperties
annotation, as well as to provide possible overrides from non-annotation sources.
- JsonInclude - Annotation Type in com.fasterxml.jackson.annotation
-
Annotation used to indicate when value of the annotated property (when
used for a field, method or constructor parameter), or all
properties of the annotated class, is to be serialized.
- JsonInclude.Include - Enum in com.fasterxml.jackson.annotation
-
Enumeration used with
JsonInclude
to define which properties
of Java Beans are to be included in serialization.
- JsonInclude.Value - Class in com.fasterxml.jackson.annotation
-
Helper class used to contain information from a single
JsonInclude
annotation.
- JsonPOJOBuilder - Annotation Type in com.fasterxml.jackson.databind.annotation
-
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.
- JsonPOJOBuilder.Value - Class in com.fasterxml.jackson.databind.annotation
-
Simple value container for containing values read from
JsonPOJOBuilder annotation instance.
- JsonProperty - Annotation Type in com.fasterxml.jackson.annotation
-
Marker annotation that can be used to define a non-static
method as a "setter" or "getter" for a logical property
(depending on its signature),
or non-static object field to be used (serialized, deserialized) as
a logical property.
- JsonProperty.Access - Enum in com.fasterxml.jackson.annotation
-
Various options for
JsonProperty.access() property, specifying how property
may be accessed during serialization ("read") and deserialization ("write")
(note that the direction of read and write is from perspective of the property,
not from external data format: this may be confusing in some contexts).
- JsonPropertyOrder - Annotation Type in com.fasterxml.jackson.annotation
-
Annotation that can be used to define ordering (possibly partial) to use
when serializing object properties.
- JsonSubTypes - Annotation Type in com.fasterxml.jackson.annotation
-
Annotation used with
JsonTypeInfo to indicate sub types of serializable
polymorphic types, and to associate logical names used within JSON content
(which is more portable than using physical Java class names).
- JsonSubTypes.Type - Annotation Type in com.fasterxml.jackson.annotation
-
Definition of a subtype, along with optional name.
- JsonTypeInfo - Annotation Type in com.fasterxml.jackson.annotation
-
Annotation used for configuring details of if and how type information is
used with JSON serialization and deserialization, to preserve information
about actual class of Object instances.
- JsonTypeInfo.As - Enum in com.fasterxml.jackson.annotation
-
Definition of standard type inclusion mechanisms for type metadata.
- JsonTypeInfo.Id - Enum in com.fasterxml.jackson.annotation
-
Definition of different type identifiers that can be included in JSON
during serialization, and used for deserialization.
- JsonTypeInfo.None - Class in com.fasterxml.jackson.annotation
-
- JsonValue - Annotation Type in com.fasterxml.jackson.annotation
-
Marker annotation
that indicates that the value of annotated accessor (either field
or "getter" method [a method with non-void return type, no args])
is to be used as the single value to serialize for the instance,
instead of the usual method of collecting properties of value.
- Value(Set<String>, boolean, boolean, boolean, boolean) - Constructor for class com.fasterxml.jackson.annotation.JsonIgnoreProperties.Value
-
- Value(JsonInclude) - Constructor for class com.fasterxml.jackson.annotation.JsonInclude.Value
-
- Value(JsonInclude.Include, JsonInclude.Include, Class<?>, Class<?>) - Constructor for class com.fasterxml.jackson.annotation.JsonInclude.Value
-
- Value(JsonPOJOBuilder) - Constructor for class com.fasterxml.jackson.databind.annotation.JsonPOJOBuilder.Value
-
- Value(String, String) - Constructor for class com.fasterxml.jackson.databind.annotation.JsonPOJOBuilder.Value
-
- valueFor() - Method in interface com.fasterxml.jackson.annotation.JacksonAnnotationValue
-
Introspection method that may be used to find actual annotation that may be used
as the source for value instance.
- valueFor() - Method in class com.fasterxml.jackson.annotation.JsonAutoDetect.Value
-
- valueFor() - Method in class com.fasterxml.jackson.annotation.JsonIgnoreProperties.Value
-
- valueFor() - Method in class com.fasterxml.jackson.annotation.JsonInclude.Value
-
- valueOf(String) - Static method in enum com.fasterxml.jackson.annotation.JsonAutoDetect.Visibility
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum com.fasterxml.jackson.annotation.JsonCreator.Mode
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum com.fasterxml.jackson.annotation.JsonFormat.Feature
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum com.fasterxml.jackson.annotation.JsonFormat.Shape
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum com.fasterxml.jackson.annotation.JsonInclude.Include
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum com.fasterxml.jackson.annotation.JsonProperty.Access
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum com.fasterxml.jackson.annotation.JsonTypeInfo.As
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum com.fasterxml.jackson.annotation.JsonTypeInfo.Id
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum com.fasterxml.jackson.annotation.OptBoolean
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum com.fasterxml.jackson.annotation.PropertyAccessor
-
Returns the enum constant of this type with the specified name.
- values() - Static method in enum com.fasterxml.jackson.annotation.JsonAutoDetect.Visibility
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum com.fasterxml.jackson.annotation.JsonCreator.Mode
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum com.fasterxml.jackson.annotation.JsonFormat.Feature
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum com.fasterxml.jackson.annotation.JsonFormat.Shape
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum com.fasterxml.jackson.annotation.JsonInclude.Include
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum com.fasterxml.jackson.annotation.JsonProperty.Access
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum com.fasterxml.jackson.annotation.JsonTypeInfo.As
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum com.fasterxml.jackson.annotation.JsonTypeInfo.Id
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum com.fasterxml.jackson.annotation.OptBoolean
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum com.fasterxml.jackson.annotation.PropertyAccessor
-
Returns an array containing the constants of this enum type, in
the order they are declared.