Index

A B C D E F G H I J K L M N O P R S T U V W _ 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form

A

ACCEPT_CASE_INSENSITIVE_PROPERTIES - Enum constant in enum com.fasterxml.jackson.annotation.JsonFormat.Feature
Override for MapperFeature.ACCEPT_CASE_INSENSITIVE_PROPERTIES, which allows case-insensitive matching of property names (but NOT values, see JsonFormat.Feature.ACCEPT_CASE_INSENSITIVE_VALUES for that).
ACCEPT_CASE_INSENSITIVE_VALUES - Enum constant in enum com.fasterxml.jackson.annotation.JsonFormat.Feature
Override for MapperFeature.ACCEPT_CASE_INSENSITIVE_VALUES, which allows case-sensitive matching of (some) property values, such as Enums.
ACCEPT_SINGLE_VALUE_AS_ARRAY - Enum constant in enum com.fasterxml.jackson.annotation.JsonFormat.Feature
Override for DeserializationFeature.ACCEPT_SINGLE_VALUE_AS_ARRAY which will allow deserialization of JSON non-array values into single-element Java arrays and Collections.
access() - Element in annotation type com.fasterxml.jackson.annotation.JsonProperty
Optional property that may be used to change the way visibility of accessors (getter, field-as-getter) and mutators (constructor parameter, setter, field-as-setter) is determined, either so that otherwise non-visible accessors (like private getters) may be used; or that otherwise visible accessors are ignored.
Access() - Constructor for enum com.fasterxml.jackson.annotation.JsonProperty.Access
 
ADJUST_DATES_TO_CONTEXT_TIME_ZONE - Enum constant in enum com.fasterxml.jackson.annotation.JsonFormat.Feature
Override for DeserializationFeature.ADJUST_DATES_TO_CONTEXT_TIMEZONE that specifies whether context provided timezone DeserializationContext.getTimeZone() should be used to adjust Date/Time values on deserialization, even if value itself contains timezone information
all() - Static method in class com.fasterxml.jackson.annotation.JsonIncludeProperties.Value
 
ALL - Enum constant in enum com.fasterxml.jackson.annotation.PropertyAccessor
This pseudo-type indicates that all accessors are affected.
ALL - Static variable in class com.fasterxml.jackson.annotation.JsonIncludeProperties.Value
Default instance has no explicitly included fields
allowGetters() - Element in annotation type com.fasterxml.jackson.annotation.JsonIgnoreProperties
Property that can be enabled to allow "getters" to be used (that is, prevent ignoral of getters for properties listed in JsonIgnoreProperties.value()).
allowSetters() - Element in annotation type com.fasterxml.jackson.annotation.JsonIgnoreProperties
Property that can be enabled to allow "setters" to be used (that is, prevent ignoral of setters for properties listed in JsonIgnoreProperties.value()).
alphabetic() - Element in annotation type com.fasterxml.jackson.annotation.JsonPropertyOrder
Property that defines what to do regarding ordering of properties not explicitly included in annotation instance.
ALWAYS - Enum constant in enum com.fasterxml.jackson.annotation.JsonInclude.Include
Value that indicates that property is to be always included, independent of value of the property.
alwaysAsId() - Element in annotation type com.fasterxml.jackson.annotation.JsonIdentityReference
Marker to indicate whether all referenced values are to be serialized as ids (true); or by serializing the first encountered reference as POJO and only then as id (false).
ANY - Enum constant in enum com.fasterxml.jackson.annotation.JsonAutoDetect.Visibility
Value that means that all kinds of access modifiers are acceptable, from private to public.
ANY - Enum constant in enum com.fasterxml.jackson.annotation.JsonFormat.Shape
Marker enum value that indicates "whatever" choice, meaning that annotation does NOT specify shape to use.
ARRAY - Enum constant in enum com.fasterxml.jackson.annotation.JsonFormat.Shape
Value that indicates that (JSON) Array type should be used.
As() - Constructor for enum com.fasterxml.jackson.annotation.JsonTypeInfo.As
 
AS_EMPTY - Enum constant in enum com.fasterxml.jackson.annotation.Nulls
Value that indicates that value to assign should come from the value deserializer of the type, using method getEmptyValue().
asBoolean() - Method in enum com.fasterxml.jackson.annotation.OptBoolean
 
asPrimitive() - Method in enum com.fasterxml.jackson.annotation.OptBoolean
 
AUTO - Enum constant in enum com.fasterxml.jackson.annotation.JsonProperty.Access
Access setting which means that visibility rules are to be used to automatically determine read- and/or write-access of this property.

B

Base(Class<?>) - Constructor for class com.fasterxml.jackson.annotation.ObjectIdGenerators.Base
 
BINARY - Enum constant in enum com.fasterxml.jackson.annotation.JsonFormat.Shape
Value that indicates that Binary type (native, if format supports it; encoding using Base64 if only textual types supported) should be used.
bindItem(ObjectIdGenerator.IdKey, Object) - Method in interface com.fasterxml.jackson.annotation.ObjectIdResolver
Method called when a POJO is deserialized and has an Object Identifier.
bindItem(ObjectIdGenerator.IdKey, Object) - Method in class com.fasterxml.jackson.annotation.SimpleObjectIdResolver
 
BOOLEAN - Enum constant in enum com.fasterxml.jackson.annotation.JsonFormat.Shape
Value that indicates that (JSON) boolean type (true, false) should be used.

C

canUseFor(ObjectIdGenerator<?>) - Method in class com.fasterxml.jackson.annotation.ObjectIdGenerator
Method called to check whether this generator instance can be used for Object Ids of specific generator type and scope; determination is based by passing a configured "blueprint" (prototype) instance; from which the actual instances are created (using ObjectIdGenerator.newForSerialization(java.lang.Object)).
canUseFor(ObjectIdGenerator<?>) - Method in class com.fasterxml.jackson.annotation.ObjectIdGenerators.Base
 
canUseFor(ObjectIdGenerator<?>) - Method in class com.fasterxml.jackson.annotation.ObjectIdGenerators.StringIdGenerator
 
canUseFor(ObjectIdGenerator<?>) - Method in class com.fasterxml.jackson.annotation.ObjectIdGenerators.UUIDGenerator
Since UUIDs are always unique, let's fully ignore scope definition
canUseFor(ObjectIdResolver) - Method in interface com.fasterxml.jackson.annotation.ObjectIdResolver
Method called to check whether this resolver instance can be used for Object Ids of specific resolver type; determination is based by passing a configured "blueprint" (prototype) instance; from which the actual instances are created (using ObjectIdResolver.newForDeserialization(java.lang.Object)).
canUseFor(ObjectIdResolver) - Method in class com.fasterxml.jackson.annotation.SimpleObjectIdResolver
 
CLASS - Enum constant in enum com.fasterxml.jackson.annotation.JsonTypeInfo.Id
Means that fully-qualified Java class name is used as the type identifier.
com.fasterxml.jackson.annotation - package com.fasterxml.jackson.annotation
Public core annotations, most of which are used to configure how Data Mapping/Binding works.
construct(JsonAutoDetect.Visibility, JsonAutoDetect.Visibility, JsonAutoDetect.Visibility, JsonAutoDetect.Visibility, JsonAutoDetect.Visibility) - Static method in class com.fasterxml.jackson.annotation.JsonAutoDetect.Value
 
construct(JsonFormat) - Static method in class com.fasterxml.jackson.annotation.JsonFormat.Features
 
construct(JsonFormat.Feature[], JsonFormat.Feature[]) - Static method in class com.fasterxml.jackson.annotation.JsonFormat.Features
 
construct(JsonInclude.Include, JsonInclude.Include) - Static method in class com.fasterxml.jackson.annotation.JsonInclude.Value
Factory method to use for constructing an instance for components
construct(JsonInclude.Include, JsonInclude.Include, Class<?>, Class<?>) - Static method in class com.fasterxml.jackson.annotation.JsonInclude.Value
Factory method to use for constructing an instance for components
construct(JsonTypeInfo.Id, JsonTypeInfo.As, String, Class<?>, boolean, Boolean) - Static method in class com.fasterxml.jackson.annotation.JsonTypeInfo.Value
 
construct(Nulls, Nulls) - Static method in class com.fasterxml.jackson.annotation.JsonSetter.Value
Factory method that may be used (although is NOT the recommended way) to construct an instance from a full set of properties.
construct(PropertyAccessor, JsonAutoDetect.Visibility) - Static method in class com.fasterxml.jackson.annotation.JsonAutoDetect.Value
Factory method for constructing instance with visibility of specified accessor (or, in case of ALL, all of them) set as specified; and the rest (if any) set as JsonAutoDetect.Visibility.DEFAULT).
construct(Object, Boolean) - Static method in class com.fasterxml.jackson.annotation.JacksonInject.Value
 
construct(Set<String>, boolean, boolean, boolean, boolean) - Static method in class com.fasterxml.jackson.annotation.JsonIgnoreProperties.Value
Factory method that may be used (although is NOT the recommended way) to construct an instance from a full set of properties.
content() - Element in annotation type com.fasterxml.jackson.annotation.JsonInclude
Inclusion rule to use for entries ("content") of annotated Maps and referential types (like AtomicReference); defaults to JsonInclude.Include.ALWAYS.
contentFilter() - Element in annotation type com.fasterxml.jackson.annotation.JsonInclude
Specifies type of "Filter Object" to use in case JsonInclude.content() is JsonInclude.Include.CUSTOM: if so, an instance is created by calling HandlerInstantiator (of ObjectMapper), which by default simply calls zero-argument constructor of the Filter Class.
contentNulls() - Element in annotation type com.fasterxml.jackson.annotation.JsonSetter
Specifies action to take when input to match into content value (of a Collection, Map, array, or referential value) contains explicit `null` value (if format has one) to bind.
CREATOR - Enum constant in enum com.fasterxml.jackson.annotation.PropertyAccessor
Creators are constructors and (static) factory methods used to construct POJO instances for deserialization
creatorEnabled() - Method in enum com.fasterxml.jackson.annotation.PropertyAccessor
 
creatorVisibility() - Element in annotation type com.fasterxml.jackson.annotation.JsonAutoDetect
Minimum visibility required for auto-detecting Creator methods, except for no-argument constructors (which are always detected no matter what).
CUSTOM - Enum constant in enum com.fasterxml.jackson.annotation.JsonInclude.Include
Value that indicates that separate filter Object (specified by JsonInclude.valueFilter() for value itself, and/or JsonInclude.contentFilter() for contents of structured types) is to be used for determining inclusion criteria.
CUSTOM - Enum constant in enum com.fasterxml.jackson.annotation.JsonTypeInfo.Id
Means that typing mechanism uses customized handling, with possibly custom configuration.

D

DEDUCTION - Enum constant in enum com.fasterxml.jackson.annotation.JsonTypeInfo.Id
Means that no serialized typing-property is used.
DEFAULT - Enum constant in enum com.fasterxml.jackson.annotation.JsonAutoDetect.Visibility
Value that indicates that default visibility level (whatever it is, depends on context) is to be used.
DEFAULT - Enum constant in enum com.fasterxml.jackson.annotation.JsonCreator.Mode
Pseudo-mode that indicates that caller is to use default heuristics for choosing mode to use.
DEFAULT - Enum constant in enum com.fasterxml.jackson.annotation.Nulls
Pseudo-value used to indicate that defaults are to be used for handling, that is, this value specifies no explicit handling override.
DEFAULT - Enum constant in enum com.fasterxml.jackson.annotation.OptBoolean
Value that indicates that the annotation property does NOT have an explicit definition of enabled/disabled (or true/false); instead, a higher-level configuration value is used; or lacking higher-level global setting, default.
DEFAULT - Static variable in class com.fasterxml.jackson.annotation.JsonAutoDetect.Value
Default instance with baseline visibility checking: Only public fields visible Only public getters, is-getters visible All setters (regardless of access) visible Only public Creators visible
DEFAULT_FIELD_VISIBILITY - Static variable in class com.fasterxml.jackson.annotation.JsonAutoDetect.Value
 
DEFAULT_LOCALE - Static variable in annotation type com.fasterxml.jackson.annotation.JsonFormat
Value that indicates that default Locale (from deserialization or serialization context) should be used: annotation does not define value to use.
DEFAULT_TIMEZONE - Static variable in annotation type com.fasterxml.jackson.annotation.JsonFormat
Value that indicates that default TimeZone (from deserialization or serialization context) should be used: annotation does not define value to use.
defaultImpl() - Element in annotation type com.fasterxml.jackson.annotation.JsonTypeInfo
Optional property that can be used to specify default implementation class to use for deserialization if type identifier is either not present, or can not be mapped to a registered type (which can occur for ids, but not when specifying explicit class to use).
defaultValue() - Element in annotation type com.fasterxml.jackson.annotation.JsonProperty
Property that may be used to document expected default value for the property: most often used as source information for generating schemas (like JSON Schema or protobuf/thrift schema), or documentation.
defaultVisibility() - Static method in class com.fasterxml.jackson.annotation.JsonAutoDetect.Value
 
DELEGATING - Enum constant in enum com.fasterxml.jackson.annotation.JsonCreator.Mode
Mode that indicates that if creator takes a single argument, the whole incoming data value is to be bound into declared type of that argument; this "delegate" value is then passed as the argument to creator.
DISABLED - Enum constant in enum com.fasterxml.jackson.annotation.JsonCreator.Mode
Pseudo-mode that indicates that creator is not to be used.

E

empty() - Static method in class com.fasterxml.jackson.annotation.JacksonInject.Value
 
empty() - Static method in class com.fasterxml.jackson.annotation.JsonFormat.Features
 
empty() - Static method in class com.fasterxml.jackson.annotation.JsonFormat.Value
 
empty() - Static method in class com.fasterxml.jackson.annotation.JsonIgnoreProperties.Value
Accessor for default instances which has "empty" settings; that is: No explicitly defined fields to ignore Does not ignore unknown fields Does not "allow" getters if property ignored (that is, ignorals apply to both setter and getter) Does not "allow" setters if property ignored (that is, ignorals apply to both setter and getter) Does use merge when combining overrides to base settings, such that `true` settings for any of the properties results in `true`, and names of fields are combined (union)
empty() - Static method in class com.fasterxml.jackson.annotation.JsonInclude.Value
 
empty() - Static method in class com.fasterxml.jackson.annotation.JsonSetter.Value
Accessor for default instances which has "empty" settings; that is: Null handling using global defaults, Nulls.DEFAULT.
EMPTY - Static variable in class com.fasterxml.jackson.annotation.JacksonInject.Value
 
EMPTY - Static variable in class com.fasterxml.jackson.annotation.JsonFormat.Features
 
EMPTY - Static variable in class com.fasterxml.jackson.annotation.JsonFormat.Value
 
EMPTY - Static variable in class com.fasterxml.jackson.annotation.JsonIgnoreProperties.Value
Default instance has no explicitly ignored fields, does not ignore unknowns, does not explicitly allow getters/setters (that is, ignorals apply to both), but does use merging for combining overrides with base settings
EMPTY - Static variable in class com.fasterxml.jackson.annotation.JsonInclude.Value
 
EMPTY - Static variable in class com.fasterxml.jackson.annotation.JsonSetter.Value
Default instance used in place of "default settings".
EMPTY - Static variable in class com.fasterxml.jackson.annotation.JsonTypeInfo.Value
 
enabled() - Element in annotation type com.fasterxml.jackson.annotation.JsonAnyGetter
Optional argument that defines whether this annotation is active or not.
enabled() - Element in annotation type com.fasterxml.jackson.annotation.JsonAnySetter
Optional argument that defines whether this annotation is active or not.
enabled() - Element in annotation type com.fasterxml.jackson.annotation.JsonUnwrapped
Property that is usually only used when overriding (masking) annotations, using mix-in annotations.
equals(Boolean, Boolean) - Static method in enum com.fasterxml.jackson.annotation.OptBoolean
 
equals(Object) - Method in class com.fasterxml.jackson.annotation.JacksonInject.Value
 
equals(Object) - Method in class com.fasterxml.jackson.annotation.JsonAutoDetect.Value
 
equals(Object) - Method in class com.fasterxml.jackson.annotation.JsonFormat.Features
 
equals(Object) - Method in class com.fasterxml.jackson.annotation.JsonFormat.Value
 
equals(Object) - Method in class com.fasterxml.jackson.annotation.JsonIgnoreProperties.Value
 
equals(Object) - Method in class com.fasterxml.jackson.annotation.JsonInclude.Value
 
equals(Object) - Method in class com.fasterxml.jackson.annotation.JsonIncludeProperties.Value
 
equals(Object) - Method in class com.fasterxml.jackson.annotation.JsonSetter.Value
 
equals(Object) - Method in class com.fasterxml.jackson.annotation.JsonTypeInfo.Value
 
equals(Object) - Method in class com.fasterxml.jackson.annotation.ObjectIdGenerator.IdKey
 
EXISTING_PROPERTY - Enum constant in enum com.fasterxml.jackson.annotation.JsonTypeInfo.As
Inclusion mechanism similar to PROPERTY with respect to deserialization; but one that is produced by a "regular" accessible property during serialization.
EXTERNAL_PROPERTY - Enum constant in enum com.fasterxml.jackson.annotation.JsonTypeInfo.As
Inclusion mechanism similar to PROPERTY, except that property is included one-level higher in hierarchy, i.e.

F

FAIL - Enum constant in enum com.fasterxml.jackson.annotation.Nulls
Value that indicates that an exception (of type that indicates input mismatch problem) is to be thrown, to indicate that null values are not accepted.
failOnRepeatedNames() - Element in annotation type com.fasterxml.jackson.annotation.JsonSubTypes
Subtypes of the annotated type may have logical type name and names properties.
FALSE - Enum constant in enum com.fasterxml.jackson.annotation.OptBoolean
Value that indicates that the annotation property is explicitly defined to be disabled, or false.
Feature() - Constructor for enum com.fasterxml.jackson.annotation.JsonFormat.Feature
 
Features(int, int) - Constructor for class com.fasterxml.jackson.annotation.JsonFormat.Features
 
FIELD - Enum constant in enum com.fasterxml.jackson.annotation.PropertyAccessor
Field refers to fields of regular Java objects.
fieldEnabled() - Method in enum com.fasterxml.jackson.annotation.PropertyAccessor
 
fieldVisibility() - Element in annotation type com.fasterxml.jackson.annotation.JsonAutoDetect
Minimum visibility required for auto-detecting member fields.
findIgnoredForDeserialization() - Method in class com.fasterxml.jackson.annotation.JsonIgnoreProperties.Value
Method called to find names of properties to ignore when used for serialization: functionally same as JsonIgnoreProperties.Value.getIgnored() if JsonIgnoreProperties.Value.getAllowSetters() is false (that is, there is "allowSetters=false" or equivalent), otherwise returns empty Set.
findIgnoredForSerialization() - Method in class com.fasterxml.jackson.annotation.JsonIgnoreProperties.Value
Method called to find names of properties to ignore when used for serialization: functionally same as JsonIgnoreProperties.Value.getIgnored() if JsonIgnoreProperties.Value.getAllowGetters() is false (that is, there is "allowGetters=false" or equivalent), otherwise returns empty Set.
forContentNulls(Nulls) - Static method in class com.fasterxml.jackson.annotation.JsonSetter.Value
 
forId(Object) - Static method in class com.fasterxml.jackson.annotation.JacksonInject.Value
 
forIgnoredProperties(String...) - Static method in class com.fasterxml.jackson.annotation.JsonIgnoreProperties.Value
 
forIgnoredProperties(Set<String>) - Static method in class com.fasterxml.jackson.annotation.JsonIgnoreProperties.Value
 
forIgnoreUnknown(boolean) - Static method in class com.fasterxml.jackson.annotation.JsonIgnoreProperties.Value
 
forLeniency(boolean) - Static method in class com.fasterxml.jackson.annotation.JsonFormat.Value
 
forPattern(String) - Static method in class com.fasterxml.jackson.annotation.JsonFormat.Value
 
forScope(Class<?>) - Method in class com.fasterxml.jackson.annotation.ObjectIdGenerator
Factory method to create a blueprint instance for specified scope.
forScope(Class<?>) - Method in class com.fasterxml.jackson.annotation.ObjectIdGenerators.IntSequenceGenerator
 
forScope(Class<?>) - Method in class com.fasterxml.jackson.annotation.ObjectIdGenerators.StringIdGenerator
 
forScope(Class<?>) - Method in class com.fasterxml.jackson.annotation.ObjectIdGenerators.UUIDGenerator
Can just return base instance since this is essentially scopeless
forShape(JsonFormat.Shape) - Static method in class com.fasterxml.jackson.annotation.JsonFormat.Value
 
forValueNulls(Nulls) - Static method in class com.fasterxml.jackson.annotation.JsonSetter.Value
 
forValueNulls(Nulls, Nulls) - Static method in class com.fasterxml.jackson.annotation.JsonSetter.Value
 
from(JacksonInject) - Static method in class com.fasterxml.jackson.annotation.JacksonInject.Value
 
from(JsonAutoDetect) - Static method in class com.fasterxml.jackson.annotation.JsonAutoDetect.Value
 
from(JsonFormat) - Static method in class com.fasterxml.jackson.annotation.JsonFormat.Value
 
from(JsonIgnoreProperties) - Static method in class com.fasterxml.jackson.annotation.JsonIgnoreProperties.Value
 
from(JsonInclude) - Static method in class com.fasterxml.jackson.annotation.JsonInclude.Value
Factory method to use for constructing an instance from instance of JsonInclude
from(JsonIncludeProperties) - Static method in class com.fasterxml.jackson.annotation.JsonIncludeProperties.Value
 
from(JsonSetter) - Static method in class com.fasterxml.jackson.annotation.JsonSetter.Value
 
from(JsonTypeInfo) - Static method in class com.fasterxml.jackson.annotation.JsonTypeInfo.Value
 
fromBoolean(Boolean) - Static method in enum com.fasterxml.jackson.annotation.OptBoolean
 

G

generateId(Object) - Method in class com.fasterxml.jackson.annotation.ObjectIdGenerator
Method used for generating a new Object Identifier to serialize for given POJO.
generateId(Object) - Method in class com.fasterxml.jackson.annotation.ObjectIdGenerators.Base
 
generateId(Object) - Method in class com.fasterxml.jackson.annotation.ObjectIdGenerators.IntSequenceGenerator
 
generateId(Object) - Method in class com.fasterxml.jackson.annotation.ObjectIdGenerators.StringIdGenerator
 
generateId(Object) - Method in class com.fasterxml.jackson.annotation.ObjectIdGenerators.UUIDGenerator
 
generator() - Element in annotation type com.fasterxml.jackson.annotation.JsonIdentityInfo
Generator to use for producing Object Identifier for objects: either one of pre-defined generators from ObjectIdGenerator, or a custom generator.
get(JsonFormat.Feature) - Method in class com.fasterxml.jackson.annotation.JsonFormat.Features
 
getAllowGetters() - Method in class com.fasterxml.jackson.annotation.JsonIgnoreProperties.Value
 
getAllowSetters() - Method in class com.fasterxml.jackson.annotation.JsonIgnoreProperties.Value
 
getContentFilter() - Method in class com.fasterxml.jackson.annotation.JsonInclude.Value
 
getContentInclusion() - Method in class com.fasterxml.jackson.annotation.JsonInclude.Value
 
getContentNulls() - Method in class com.fasterxml.jackson.annotation.JsonSetter.Value
 
getCreatorVisibility() - Method in class com.fasterxml.jackson.annotation.JsonAutoDetect.Value
 
getDefaultImpl() - Method in class com.fasterxml.jackson.annotation.JsonTypeInfo.Value
 
getDefaultPropertyName() - Method in enum com.fasterxml.jackson.annotation.JsonTypeInfo.Id
 
getFeature(JsonFormat.Feature) - Method in class com.fasterxml.jackson.annotation.JsonFormat.Value
Accessor for checking whether this format value has specific setting for given feature.
getFeatures() - Method in class com.fasterxml.jackson.annotation.JsonFormat.Value
Accessor for getting full set of features enabled/disabled.
getFieldVisibility() - Method in class com.fasterxml.jackson.annotation.JsonAutoDetect.Value
 
getGetterVisibility() - Method in class com.fasterxml.jackson.annotation.JsonAutoDetect.Value
 
getId() - Method in class com.fasterxml.jackson.annotation.JacksonInject.Value
 
getIdType() - Method in class com.fasterxml.jackson.annotation.JsonTypeInfo.Value
 
getIdVisible() - Method in class com.fasterxml.jackson.annotation.JsonTypeInfo.Value
 
getIgnored() - Method in class com.fasterxml.jackson.annotation.JsonIgnoreProperties.Value
 
getIgnoreUnknown() - Method in class com.fasterxml.jackson.annotation.JsonIgnoreProperties.Value
 
getIncluded() - Method in class com.fasterxml.jackson.annotation.JsonIncludeProperties.Value
 
getInclusionType() - Method in class com.fasterxml.jackson.annotation.JsonTypeInfo.Value
 
getIsGetterVisibility() - Method in class com.fasterxml.jackson.annotation.JsonAutoDetect.Value
 
getLenient() - Method in class com.fasterxml.jackson.annotation.JsonFormat.Value
 
getLocale() - Method in class com.fasterxml.jackson.annotation.JsonFormat.Value
 
getMerge() - Method in class com.fasterxml.jackson.annotation.JsonIgnoreProperties.Value
 
getPattern() - Method in class com.fasterxml.jackson.annotation.JsonFormat.Value
 
getPropertyName() - Method in class com.fasterxml.jackson.annotation.JsonTypeInfo.Value
 
getRequireTypeIdForSubtypes() - Method in class com.fasterxml.jackson.annotation.JsonTypeInfo.Value
 
getScope() - Method in class com.fasterxml.jackson.annotation.ObjectIdGenerator
 
getScope() - Method in class com.fasterxml.jackson.annotation.ObjectIdGenerators.Base
 
getSetterVisibility() - Method in class com.fasterxml.jackson.annotation.JsonAutoDetect.Value
 
getShape() - Method in class com.fasterxml.jackson.annotation.JsonFormat.Value
 
GETTER - Enum constant in enum com.fasterxml.jackson.annotation.PropertyAccessor
Getters are methods used to get a POJO field value for serialization, or, under certain conditions also for de-serialization.
getterEnabled() - Method in enum com.fasterxml.jackson.annotation.PropertyAccessor
 
getterVisibility() - Element in annotation type com.fasterxml.jackson.annotation.JsonAutoDetect
Minimum visibility required for auto-detecting regular getter methods.
getTimeZone() - Method in class com.fasterxml.jackson.annotation.JsonFormat.Value
 
getUseInput() - Method in class com.fasterxml.jackson.annotation.JacksonInject.Value
 
getValueFilter() - Method in class com.fasterxml.jackson.annotation.JsonInclude.Value
 
getValueInclusion() - Method in class com.fasterxml.jackson.annotation.JsonInclude.Value
 
getValueNulls() - Method in class com.fasterxml.jackson.annotation.JsonSetter.Value
 

H

hashCode - Variable in class com.fasterxml.jackson.annotation.ObjectIdGenerator.IdKey
 
hashCode() - Method in class com.fasterxml.jackson.annotation.JacksonInject.Value
 
hashCode() - Method in class com.fasterxml.jackson.annotation.JsonAutoDetect.Value
 
hashCode() - Method in class com.fasterxml.jackson.annotation.JsonFormat.Features
 
hashCode() - Method in class com.fasterxml.jackson.annotation.JsonFormat.Value
 
hashCode() - Method in class com.fasterxml.jackson.annotation.JsonIgnoreProperties.Value
 
hashCode() - Method in class com.fasterxml.jackson.annotation.JsonInclude.Value
 
hashCode() - Method in class com.fasterxml.jackson.annotation.JsonIncludeProperties.Value
 
hashCode() - Method in class com.fasterxml.jackson.annotation.JsonSetter.Value
 
hashCode() - Method in class com.fasterxml.jackson.annotation.JsonTypeInfo.Value
 
hashCode() - Method in class com.fasterxml.jackson.annotation.ObjectIdGenerator.IdKey
 
hasId() - Method in class com.fasterxml.jackson.annotation.JacksonInject.Value
 
hasLenient() - Method in class com.fasterxml.jackson.annotation.JsonFormat.Value
Accessor for checking whether there is a setting for leniency.
hasLocale() - Method in class com.fasterxml.jackson.annotation.JsonFormat.Value
 
hasPattern() - Method in class com.fasterxml.jackson.annotation.JsonFormat.Value
 
hasShape() - Method in class com.fasterxml.jackson.annotation.JsonFormat.Value
 
hasTimeZone() - Method in class com.fasterxml.jackson.annotation.JsonFormat.Value
 

I

Id(String) - Constructor for enum com.fasterxml.jackson.annotation.JsonTypeInfo.Id
 
IdKey(Class<?>, Class<?>, Object) - Constructor for class com.fasterxml.jackson.annotation.ObjectIdGenerator.IdKey
 
ignoreUnknown() - Element in annotation type com.fasterxml.jackson.annotation.JsonIgnoreProperties
Property that defines whether it is ok to just ignore any unrecognized properties during deserialization.
include() - Element in annotation type com.fasterxml.jackson.annotation.JsonTypeInfo
Specifies mechanism to use for including type metadata (if any; for JsonTypeInfo.Id.NONE nothing is included); used when serializing, and expected when deserializing.
Include() - Constructor for enum com.fasterxml.jackson.annotation.JsonInclude.Include
 
index() - Element in annotation type com.fasterxml.jackson.annotation.JsonProperty
Property that indicates numerical index of this property (relative to other properties specified for the Object).
INDEX_UNKNOWN - Static variable in annotation type com.fasterxml.jackson.annotation.JsonProperty
Marker value used to indicate that no index has been specified.
initialValue() - Method in class com.fasterxml.jackson.annotation.ObjectIdGenerators.IntSequenceGenerator
 
IntSequenceGenerator() - Constructor for class com.fasterxml.jackson.annotation.ObjectIdGenerators.IntSequenceGenerator
 
IntSequenceGenerator(Class<?>, int) - Constructor for class com.fasterxml.jackson.annotation.ObjectIdGenerators.IntSequenceGenerator
 
IS_GETTER - Enum constant in enum com.fasterxml.jackson.annotation.PropertyAccessor
"Is getters" are getter-like methods that are named "isXxx" (instead of "getXxx" for getters) and return boolean value (either primitive, or Boolean).
isEnabled(JsonTypeInfo.Value) - Static method in class com.fasterxml.jackson.annotation.JsonTypeInfo.Value
Static helper method for simple(r) checking of whether there's a Value instance that indicates that polymorphic handling is (to be) enabled.
isGetterEnabled() - Method in enum com.fasterxml.jackson.annotation.PropertyAccessor
 
isGetterVisibility() - Element in annotation type com.fasterxml.jackson.annotation.JsonAutoDetect
Minimum visibility required for auto-detecting is-getter methods.
isLenient() - Method in class com.fasterxml.jackson.annotation.JsonFormat.Value
Convenience method equivalent to
isNumeric() - Method in enum com.fasterxml.jackson.annotation.JsonFormat.Shape
 
isStructured() - Method in enum com.fasterxml.jackson.annotation.JsonFormat.Shape
 
isValidReferencePropertyName(String, Object) - Method in class com.fasterxml.jackson.annotation.ObjectIdGenerator
Accessor that may be called (after verifying (via ObjectIdGenerator.maySerializeAsObject()) whether given name
isVisible(Member) - Method in enum com.fasterxml.jackson.annotation.JsonAutoDetect.Visibility
 

J

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.
JacksonAnnotationsInside - Annotation Type in com.fasterxml.jackson.annotation
Meta-annotation (annotations used on other annotations) used for indicating that instead of using target annotation (annotation annotated with this annotation), Jackson should use meta-annotations it has.
JacksonAnnotationValue<A> - 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.
JacksonInject - Annotation Type in com.fasterxml.jackson.annotation
Jackson-specific annotation used for indicating that value of annotated property will be "injected", i.e.
JacksonInject.Value - Class in com.fasterxml.jackson.annotation
Helper class used to contain information from a single JacksonInject annotation, as well as to provide possible overrides from non-annotation sources.
JsonAlias - Annotation Type in com.fasterxml.jackson.annotation
Annotation that can be used to define one or more alternative names for a property, accepted during deserialization as alternative to the official name.
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.
JsonBackReference - Annotation Type in com.fasterxml.jackson.annotation
Annotation used to indicate that associated property is part of two-way linkage between fields; and that its role is "child" (or "back") link.
JsonClassDescription - Annotation Type in com.fasterxml.jackson.annotation
Annotation used to define a human-readable description for annotated type (class).
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
Enumeration of possible JsonCreator.mode() values available.
JsonEnumDefaultValue - Annotation Type in com.fasterxml.jackson.annotation
Marker annotation that can be used to define a default value used when trying to deserialize unknown Enum values.
JsonFilter - Annotation Type in com.fasterxml.jackson.annotation
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, and com.fasterxml.jackson.databind.ObjectMapper (or objects it delegates to) providing matching filters by id.
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.Features - Class in com.fasterxml.jackson.annotation
Helper class that encapsulates information equivalent to Boolean valued EnumMap.
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.
JsonFormat.Value - Class in com.fasterxml.jackson.annotation
Helper class used to contain information from a single JsonFormat annotation.
JsonGetter - Annotation Type in com.fasterxml.jackson.annotation
Marker annotation that can be used to define a non-static, no-argument value-returning (non-void) method to be used as a "getter" for a logical property.
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.
JsonIgnoreType - Annotation Type in com.fasterxml.jackson.annotation
Marker annotation that indicates that all properties that have type annotated with this annotation are to be ignored during serialization and deserialization.
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.
JsonIncludeProperties - Annotation Type in com.fasterxml.jackson.annotation
Annotation that can be used to either only include serialization of properties (during serialization), or only include processing of JSON properties read (during deserialization).
JsonIncludeProperties.Value - Class in com.fasterxml.jackson.annotation
Helper class used to contain information from a single JsonIncludeProperties annotation, as well as to provide possible overrides from non-annotation sources.
JsonKey - 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.
JsonManagedReference - Annotation Type in com.fasterxml.jackson.annotation
Annotation used to indicate that annotated property is part of two-way linkage between fields; and that its role is "parent" (or "forward") link.
JsonMerge - Annotation Type in com.fasterxml.jackson.annotation
Annotation to specify whether annotated property value should use "merging" approach: merging meaning that the current value is first accessed (with a getter or field) and then modified with incoming data.
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 accessor (depending on its signature), or a non-static Object field to be used (serialized, deserialized) as a logical property (to assign value or get value from)
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).
JsonPropertyDescription - Annotation Type in com.fasterxml.jackson.annotation
Annotation used to define a human-readable description for a logical property.
JsonPropertyOrder - Annotation Type in com.fasterxml.jackson.annotation
Annotation that can be used to define ordering (possibly partial) to use when serializing object properties.
JsonRawValue - Annotation Type in com.fasterxml.jackson.annotation
Marker annotation that indicates that the annotated method or field should be serialized by including literal String value of the property as is, without quoting of characters.
JsonRootName - Annotation Type in com.fasterxml.jackson.annotation
Annotation similar to javax.xml.bind.annotation.XmlRootElement, used to indicate name to use for root-level wrapping, if wrapping is enabled.
JsonSetter - Annotation Type in com.fasterxml.jackson.annotation
Annotation that can be used to define a non-static, single-argument method to be used as a "setter" for a logical property as an alternative to recommended JsonProperty annotation; or (as of 2.9 and later), specify additional aspects of the assigning property a value during serialization.
JsonSetter.Value - Class in com.fasterxml.jackson.annotation
Helper class used to contain information from a single JsonSetter annotation, as well as to provide possible overrides from non-annotation sources.
JsonSubTypes - Annotation Type in com.fasterxml.jackson.annotation
Annotation used with JsonTypeInfo to indicate subtypes 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(s).
JsonTypeId - Annotation Type in com.fasterxml.jackson.annotation
Marker annotation that can be used on a property accessor (field, getter or setter, constructor parameter) to indicate that the property is to contain type id to use when including polymorphic type information.
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
Deprecated.
Since 2.5, use any Annotation type (such as JsonTypeInfo), if such behavior is needed; this is rarely necessary.
JsonTypeInfo.Value - Class in com.fasterxml.jackson.annotation
 
JsonTypeName - Annotation Type in com.fasterxml.jackson.annotation
Annotation used for binding logical name that the annotated class has.
JsonUnwrapped - Annotation Type in com.fasterxml.jackson.annotation
Annotation used to indicate that a POJO-valued property should be serialized "unwrapped" -- that is, if it would be serialized as Object value, its properties are instead included as properties of its containing Object -- and deserialized reproducing "missing" structure.
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.
JsonView - Annotation Type in com.fasterxml.jackson.annotation
Annotation used for indicating view(s) that the property that is defined by method or field annotated is part of.

K

key - Variable in class com.fasterxml.jackson.annotation.ObjectIdGenerator.IdKey
Object for which Object Id was generated: can NOT be null.
key(Object) - Method in class com.fasterxml.jackson.annotation.ObjectIdGenerator
Method for constructing key to use for ObjectId-to-POJO maps.
key(Object) - Method in class com.fasterxml.jackson.annotation.ObjectIdGenerators.IntSequenceGenerator
 
key(Object) - Method in class com.fasterxml.jackson.annotation.ObjectIdGenerators.StringIdGenerator
 
key(Object) - Method in class com.fasterxml.jackson.annotation.ObjectIdGenerators.UUIDGenerator
 

L

lenient() - Element in annotation type com.fasterxml.jackson.annotation.JsonFormat
Property that indicates whether "lenient" handling should be enabled or disabled.
locale() - Element in annotation type com.fasterxml.jackson.annotation.JsonFormat
Locale to use for serialization (if needed).

M

maySerializeAsObject() - Method in class com.fasterxml.jackson.annotation.ObjectIdGenerator
Accessor that needs to be overridden to return true if the Object Id may be serialized as JSON Object; used by, for example, JSOG handling.
merge(JsonAutoDetect.Value, JsonAutoDetect.Value) - Static method in class com.fasterxml.jackson.annotation.JsonAutoDetect.Value
 
merge(JsonFormat.Value, JsonFormat.Value) - Static method in class com.fasterxml.jackson.annotation.JsonFormat.Value
Helper method that will try to combine values from two JsonFormat.Value instances, using one as base settings, and the other as overrides to use instead of base values when defined; base values are only use if override does not specify a value (matching value is null or logically missing).
merge(JsonIgnoreProperties.Value, JsonIgnoreProperties.Value) - Static method in class com.fasterxml.jackson.annotation.JsonIgnoreProperties.Value
Helper method that will try to combine values from two JsonIgnoreProperties.Value instances, using one as base settings, and the other as overrides to use instead of base values when defined; base values are only use if override does not specify a value (matching value is null or logically missing).
merge(JsonInclude.Value, JsonInclude.Value) - Static method in class com.fasterxml.jackson.annotation.JsonInclude.Value
Helper method that will try to combine values from two JsonInclude.Value instances, using one as base settings, and the other as overrides to use instead of base values when defined; base values are only use if override does not specify a value (matching value is null or logically missing).
merge(JsonSetter.Value, JsonSetter.Value) - Static method in class com.fasterxml.jackson.annotation.JsonSetter.Value
Helper method that will try to combine values from two JsonSetter.Value instances, using one as base settings, and the other as overrides to use instead of base values when defined; base values are only use if override does not specify a value (matching value is null or logically missing).
mergeAll(JsonFormat.Value...) - Static method in class com.fasterxml.jackson.annotation.JsonFormat.Value
 
mergeAll(JsonIgnoreProperties.Value...) - Static method in class com.fasterxml.jackson.annotation.JsonIgnoreProperties.Value
 
mergeAll(JsonInclude.Value...) - Static method in class com.fasterxml.jackson.annotation.JsonInclude.Value
 
MINIMAL_CLASS - Enum constant in enum com.fasterxml.jackson.annotation.JsonTypeInfo.Id
Means that Java class name with minimal path is used as the type identifier.
mode() - Element in annotation type com.fasterxml.jackson.annotation.JsonCreator
Property that is used to indicate how argument(s) is/are bound for creator, in cases there may be multiple alternatives.
Mode() - Constructor for enum com.fasterxml.jackson.annotation.JsonCreator.Mode
 

N

name() - Element in annotation type com.fasterxml.jackson.annotation.JsonSubTypes.Type
Logical type name used as the type identifier for the class, if defined; empty String means "not defined".
NAME - Enum constant in enum com.fasterxml.jackson.annotation.JsonTypeInfo.Id
Means that logical type name is used as type information; name will then need to be separately resolved to actual concrete type (Class).
names() - Element in annotation type com.fasterxml.jackson.annotation.JsonSubTypes.Type
(optional) Logical type names used as the type identifier for the class: used if more than one type name should be associated with the same type.
namespace() - Element in annotation type com.fasterxml.jackson.annotation.JsonProperty
Optional namespace to use with data formats that support such concept (specifically XML); if so, used with JsonProperty.value() to construct fully-qualified name.
namespace() - Element in annotation type com.fasterxml.jackson.annotation.JsonRootName
Optional namespace to use with data formats that support such concept (specifically XML); if so, used with JsonRootName.value() to construct fully-qualified name.
NATURAL - Enum constant in enum com.fasterxml.jackson.annotation.JsonFormat.Shape
Marker enum value that indicates the "default" choice for given datatype; for example, JSON String for String, or JSON Number for Java numbers.
newForDeserialization(Object) - Method in interface com.fasterxml.jackson.annotation.ObjectIdResolver
Factory method called to create a new instance to use for deserialization: needed since resolvers may have state (a pool of objects).
newForDeserialization(Object) - Method in class com.fasterxml.jackson.annotation.SimpleObjectIdResolver
 
newForSerialization(Object) - Method in class com.fasterxml.jackson.annotation.ObjectIdGenerator
Factory method called to create a new instance to use for serialization: needed since generators may have state (next id to produce).
newForSerialization(Object) - Method in class com.fasterxml.jackson.annotation.ObjectIdGenerators.IntSequenceGenerator
 
newForSerialization(Object) - Method in class com.fasterxml.jackson.annotation.ObjectIdGenerators.StringIdGenerator
 
newForSerialization(Object) - Method in class com.fasterxml.jackson.annotation.ObjectIdGenerators.UUIDGenerator
Can just return base instance since this is essentially scopeless
NO_OVERRIDES - Static variable in class com.fasterxml.jackson.annotation.JsonAutoDetect.Value
Empty instance that specifies no overrides, that is, all visibility levels set as JsonAutoDetect.Visibility.DEFAULT.
NON_ABSENT - Enum constant in enum com.fasterxml.jackson.annotation.JsonInclude.Include
Value that indicates that properties are included unless their value is: null "absent" value of a referential type (like Java 8 `Optional`, or AtomicReference); that is, something that would not deference to a non-null value.
NON_DEFAULT - Enum constant in enum com.fasterxml.jackson.annotation.JsonInclude.Include
Meaning of this setting depends on context: whether annotation is specified for POJO type (class), or not.
NON_EMPTY - Enum constant in enum com.fasterxml.jackson.annotation.JsonInclude.Include
Value that indicates that only properties with null value, or what is considered empty, are not to be included.
NON_NULL - Enum constant in enum com.fasterxml.jackson.annotation.JsonInclude.Include
Value that indicates that only properties with non-null values are to be included.
NON_PRIVATE - Enum constant in enum com.fasterxml.jackson.annotation.JsonAutoDetect.Visibility
Value that means that any other access modifier other than 'private' is considered auto-detectable.
nonDefaultContentNulls() - Method in class com.fasterxml.jackson.annotation.JsonSetter.Value
Returns same as JsonSetter.Value.getContentNulls() unless value would be Nulls.DEFAULT in which case `null` is returned.
nonDefaultValueNulls() - Method in class com.fasterxml.jackson.annotation.JsonSetter.Value
Returns same as JsonSetter.Value.getValueNulls() unless value would be Nulls.DEFAULT in which case `null` is returned.
None() - Constructor for class com.fasterxml.jackson.annotation.JsonTypeInfo.None
Deprecated.
 
None() - Constructor for class com.fasterxml.jackson.annotation.ObjectIdGenerators.None
 
NONE - Enum constant in enum com.fasterxml.jackson.annotation.JsonAutoDetect.Visibility
Value that indicates that no access modifiers are auto-detectable: this can be used to explicitly disable auto-detection for specified types.
NONE - Enum constant in enum com.fasterxml.jackson.annotation.JsonTypeInfo.Id
This means that no explicit type metadata is included, and typing is purely done using contextual information possibly augmented with other annotations.
NONE - Enum constant in enum com.fasterxml.jackson.annotation.PropertyAccessor
This pseudo-type indicates that none of accessors if affected.
noOverrides() - Static method in class com.fasterxml.jackson.annotation.JsonAutoDetect.Value
 
nulls() - Element in annotation type com.fasterxml.jackson.annotation.JsonSetter
Specifies action to take when input contains explicit `null` value (if format has one).
Nulls - Enum in com.fasterxml.jackson.annotation
Enumeration used with JsonSetter (for properties `nulls` and `contentNulls`) to define how explicit `null` values from input (if input format has the concept; JSON, for example does) are handled.
Nulls() - Constructor for enum com.fasterxml.jackson.annotation.Nulls
 
NUMBER - Enum constant in enum com.fasterxml.jackson.annotation.JsonFormat.Shape
Value that indicates that a numeric (JSON) type should be used (but does not specify whether integer or floating-point representation should be used)
NUMBER_FLOAT - Enum constant in enum com.fasterxml.jackson.annotation.JsonFormat.Shape
Value that indicates that floating-point numeric type should be used
NUMBER_INT - Enum constant in enum com.fasterxml.jackson.annotation.JsonFormat.Shape
Value that indicates that integer number type should be used (and not JsonFormat.Shape.NUMBER_FLOAT).

O

OBJECT - Enum constant in enum com.fasterxml.jackson.annotation.JsonFormat.Shape
Value that indicates that (JSON) Object type should be used.
ObjectIdGenerator<T> - Class in com.fasterxml.jackson.annotation
Definition of API used for constructing Object Identifiers (as annotated using JsonIdentityInfo).
ObjectIdGenerator() - Constructor for class com.fasterxml.jackson.annotation.ObjectIdGenerator
 
ObjectIdGenerator.IdKey - Class in com.fasterxml.jackson.annotation
Simple key class that can be used as a key for ObjectId-to-POJO mappings, when multiple ObjectId types and scopes are used.
ObjectIdGenerators - Class in com.fasterxml.jackson.annotation
ObjectIdGenerators() - Constructor for class com.fasterxml.jackson.annotation.ObjectIdGenerators
 
ObjectIdGenerators.Base<T> - Class in com.fasterxml.jackson.annotation
Shared base class for concrete implementations.
ObjectIdGenerators.IntSequenceGenerator - Class in com.fasterxml.jackson.annotation
Simple sequence-number based generator, which uses basic Java ints (starting with value 1) as Object Identifiers.
ObjectIdGenerators.None - Class in com.fasterxml.jackson.annotation
Abstract marker class used to allow explicitly specifying that no generator is used; which also implies that no Object Id is to be included or used.
ObjectIdGenerators.PropertyGenerator - Class in com.fasterxml.jackson.annotation
Abstract place-holder class which is used to denote case where Object Identifier to use comes from a POJO property (getter method or field).
ObjectIdGenerators.StringIdGenerator - Class in com.fasterxml.jackson.annotation
Implementation that will accept arbitrary (but unique) String Ids on deserialization, and (by default) use random UUID generation similar to ObjectIdGenerators.UUIDGenerator for generation ids.
ObjectIdGenerators.UUIDGenerator - Class in com.fasterxml.jackson.annotation
Implementation that just uses UUIDs as reliably unique identifiers: downside is that resulting String is 36 characters long.
ObjectIdResolver - Interface in com.fasterxml.jackson.annotation
Definition of API used for resolving actual Java object from Object Identifiers (as annotated using JsonIdentityInfo).
OptBoolean - Enum in com.fasterxml.jackson.annotation
Optional Boolean value ("nullean").
OptBoolean() - Constructor for enum com.fasterxml.jackson.annotation.OptBoolean
 

P

pattern() - Element in annotation type com.fasterxml.jackson.annotation.JsonFormat
Datatype-specific additional piece of configuration that may be used to further refine formatting aspects.
prefix() - Element in annotation type com.fasterxml.jackson.annotation.JsonUnwrapped
Optional property that can be used to add prefix String to use in front of names of properties that are unwrapped: this can be done for example to prevent name collisions.
PROPERTIES - Enum constant in enum com.fasterxml.jackson.annotation.JsonCreator.Mode
Mode that indicates that the argument(s) for creator are to be bound from matching properties of incoming Object value, using creator argument names (explicit or implicit) to match incoming Object properties to arguments.
property() - Element in annotation type com.fasterxml.jackson.annotation.JsonIdentityInfo
Name of JSON property in which Object Id will reside: also, if "from property" marker generator is used, identifies property that will be accessed to get type id.
property() - Element in annotation type com.fasterxml.jackson.annotation.JsonTypeInfo
Property names used when type inclusion method (JsonTypeInfo.As.PROPERTY) is used (or possibly when using type metadata of type JsonTypeInfo.Id.CUSTOM).
PROPERTY - Enum constant in enum com.fasterxml.jackson.annotation.JsonTypeInfo.As
Inclusion mechanism that uses a single configurable property, included along with actual data (POJO properties) as a separate meta-property.
PropertyAccessor - Enum in com.fasterxml.jackson.annotation
Enumeration used to define kinds of elements (called "property accessors") that annotations like JsonAutoDetect apply to.
PropertyAccessor() - Constructor for enum com.fasterxml.jackson.annotation.PropertyAccessor
 
PropertyGenerator(Class<?>) - Constructor for class com.fasterxml.jackson.annotation.ObjectIdGenerators.PropertyGenerator
 
PROTECTED_AND_PUBLIC - Enum constant in enum com.fasterxml.jackson.annotation.JsonAutoDetect.Visibility
Value that means access modifiers 'protected' and 'public' are auto-detectable (and 'private' and "package access" == no modifiers are not)
PUBLIC_ONLY - Enum constant in enum com.fasterxml.jackson.annotation.JsonAutoDetect.Visibility
Value to indicate that only 'public' access modifier is considered auto-detectable.

R

READ_DATE_TIMESTAMPS_AS_NANOSECONDS - Enum constant in enum com.fasterxml.jackson.annotation.JsonFormat.Feature
Override for DeserializationFeature.READ_UNKNOWN_ENUM_VALUES_USING_DEFAULT_VALUE, (counterpart to JsonFormat.Feature.WRITE_DATE_TIMESTAMPS_AS_NANOSECONDS), similar constraints apply.
READ_ONLY - Enum constant in enum com.fasterxml.jackson.annotation.JsonProperty.Access
Access setting that means that the property may only be read for serialization (value accessed via "getter" Method, or read from Field) but not written (set) during deserialization.
READ_UNKNOWN_ENUM_VALUES_AS_NULL - Enum constant in enum com.fasterxml.jackson.annotation.JsonFormat.Feature
Override for DeserializationFeature.READ_UNKNOWN_ENUM_VALUES_AS_NULL, which allows unknown Enum values to be parsed as null values.
READ_UNKNOWN_ENUM_VALUES_USING_DEFAULT_VALUE - Enum constant in enum com.fasterxml.jackson.annotation.JsonFormat.Feature
Override for DeserializationFeature.READ_UNKNOWN_ENUM_VALUES_USING_DEFAULT_VALUE, which allows unknown Enum values to be ignored and a predefined value specified through @JsonEnumDefaultValue annotation.
READ_WRITE - Enum constant in enum com.fasterxml.jackson.annotation.JsonProperty.Access
Access setting that means that the property will be accessed for both serialization (writing out values as external representation) and deserialization (reading values from external representation), regardless of visibility rules.
readResolve() - Method in class com.fasterxml.jackson.annotation.JsonAutoDetect.Value
 
readResolve() - Method in class com.fasterxml.jackson.annotation.JsonIgnoreProperties.Value
 
readResolve() - Method in class com.fasterxml.jackson.annotation.JsonInclude.Value
 
readResolve() - Method in class com.fasterxml.jackson.annotation.JsonSetter.Value
 
required() - Element in annotation type com.fasterxml.jackson.annotation.JsonProperty
Property that indicates whether a value (which may be explicit null) is expected for property during deserialization or not.
requireTypeIdForSubtypes() - Element in annotation type com.fasterxml.jackson.annotation.JsonTypeInfo
Specifies whether the type ID should be strictly required during polymorphic deserialization of its subtypes.
resolveId(ObjectIdGenerator.IdKey) - Method in interface com.fasterxml.jackson.annotation.ObjectIdResolver
Method called when deserialization encounters the given Object Identifier and requires the POJO associated with it.
resolveId(ObjectIdGenerator.IdKey) - Method in class com.fasterxml.jackson.annotation.SimpleObjectIdResolver
 
resolver() - Element in annotation type com.fasterxml.jackson.annotation.JsonIdentityInfo
Resolver to use for producing POJO from Object Identifier.

S

SCALAR - Enum constant in enum com.fasterxml.jackson.annotation.JsonFormat.Shape
Value that indicates shape should not be structural (that is, not JsonFormat.Shape.ARRAY or JsonFormat.Shape.OBJECT), but can be any other shape.
scope - Variable in class com.fasterxml.jackson.annotation.ObjectIdGenerator.IdKey
Scope of the Object Id (may be null, to denote global)
scope() - Element in annotation type com.fasterxml.jackson.annotation.JsonIdentityInfo
Scope is used to define applicability of an Object Id: all ids must be unique within their scope; where scope is defined as combination of this value and generator type.
serialVersionUID - Static variable in class com.fasterxml.jackson.annotation.JacksonInject.Value
 
serialVersionUID - Static variable in class com.fasterxml.jackson.annotation.JsonAutoDetect.Value
 
serialVersionUID - Static variable in class com.fasterxml.jackson.annotation.JsonFormat.Value
 
serialVersionUID - Static variable in class com.fasterxml.jackson.annotation.JsonIgnoreProperties.Value
 
serialVersionUID - Static variable in class com.fasterxml.jackson.annotation.JsonInclude.Value
 
serialVersionUID - Static variable in class com.fasterxml.jackson.annotation.JsonIncludeProperties.Value
 
serialVersionUID - Static variable in class com.fasterxml.jackson.annotation.JsonSetter.Value
 
serialVersionUID - Static variable in class com.fasterxml.jackson.annotation.JsonTypeInfo.Value
 
serialVersionUID - Static variable in class com.fasterxml.jackson.annotation.ObjectIdGenerator.IdKey
 
serialVersionUID - Static variable in class com.fasterxml.jackson.annotation.ObjectIdGenerators.IntSequenceGenerator
 
serialVersionUID - Static variable in class com.fasterxml.jackson.annotation.ObjectIdGenerators.PropertyGenerator
 
serialVersionUID - Static variable in class com.fasterxml.jackson.annotation.ObjectIdGenerators.StringIdGenerator
 
serialVersionUID - Static variable in class com.fasterxml.jackson.annotation.ObjectIdGenerators.UUIDGenerator
 
SET - Enum constant in enum com.fasterxml.jackson.annotation.Nulls
Value that indicates that an input null should result in assignment of Java `null` value of matching property (except where deserializer indicates other "null value" by overriding getNullValue(...) method)
SETTER - Enum constant in enum com.fasterxml.jackson.annotation.PropertyAccessor
Setters are methods used to set a POJO value for deserialization.
setterEnabled() - Method in enum com.fasterxml.jackson.annotation.PropertyAccessor
 
setterVisibility() - Element in annotation type com.fasterxml.jackson.annotation.JsonAutoDetect
Minimum visibility required for auto-detecting setter methods.
shape() - Element in annotation type com.fasterxml.jackson.annotation.JsonFormat
Structure to use for serialization: definition of mapping depends on datatype, but usually has straight-forward counterpart in data format (JSON).
Shape() - Constructor for enum com.fasterxml.jackson.annotation.JsonFormat.Shape
 
SIMPLE_NAME - Enum constant in enum com.fasterxml.jackson.annotation.JsonTypeInfo.Id
Means that the simple name of the Java class, equivalent to the value returned by Class.getSimpleName(), is used as the default type identifier, unless explicit name is specified by annotation JsonTypeName.
SimpleObjectIdResolver - Class in com.fasterxml.jackson.annotation
Simple implementation of ObjectIdResolver
SimpleObjectIdResolver() - Constructor for class com.fasterxml.jackson.annotation.SimpleObjectIdResolver
 
SKIP - Enum constant in enum com.fasterxml.jackson.annotation.Nulls
Value that indicates that an input null value should be skipped and no assignment is to be made; this usually means that the property will have its default value.
STRING - Enum constant in enum com.fasterxml.jackson.annotation.JsonFormat.Shape
Value that indicates that (JSON) String type should be used.
StringIdGenerator() - Constructor for class com.fasterxml.jackson.annotation.ObjectIdGenerators.StringIdGenerator
 
StringIdGenerator(Class<?>) - Constructor for class com.fasterxml.jackson.annotation.ObjectIdGenerators.StringIdGenerator
 
suffix() - Element in annotation type com.fasterxml.jackson.annotation.JsonUnwrapped
Optional property that can be used to add suffix String to append at the end of names of properties that are unwrapped: this can be done for example to prevent name collisions.

T

timezone() - Element in annotation type com.fasterxml.jackson.annotation.JsonFormat
TimeZone to use for serialization (if needed).
timeZoneAsString() - Method in class com.fasterxml.jackson.annotation.JsonFormat.Value
Alternate access (compared to JsonFormat.Value.getTimeZone()) which is useful when caller just wants time zone id to convert, but not as JDK provided TimeZone
toString() - Method in class com.fasterxml.jackson.annotation.JacksonInject.Value
 
toString() - Method in class com.fasterxml.jackson.annotation.JsonAutoDetect.Value
 
toString() - Method in class com.fasterxml.jackson.annotation.JsonFormat.Features
 
toString() - Method in class com.fasterxml.jackson.annotation.JsonFormat.Value
 
toString() - Method in class com.fasterxml.jackson.annotation.JsonIgnoreProperties.Value
 
toString() - Method in class com.fasterxml.jackson.annotation.JsonInclude.Value
 
toString() - Method in class com.fasterxml.jackson.annotation.JsonIncludeProperties.Value
 
toString() - Method in class com.fasterxml.jackson.annotation.JsonSetter.Value
 
toString() - Method in class com.fasterxml.jackson.annotation.JsonTypeInfo.Value
 
toString() - Method in class com.fasterxml.jackson.annotation.ObjectIdGenerator.IdKey
 
TRUE - Enum constant in enum com.fasterxml.jackson.annotation.OptBoolean
Value that indicates that the annotation property is explicitly defined to be enabled, or true.
type - Variable in class com.fasterxml.jackson.annotation.ObjectIdGenerator.IdKey
Type of ObjectIdGenerator used for generating Object Id

U

use() - Element in annotation type com.fasterxml.jackson.annotation.JsonTypeInfo
Specifies kind of type metadata to use when serializing type information for instances of annotated type and its subtypes; as well as what is expected during deserialization.
USE_DEFAULT_NAME - Static variable in annotation type com.fasterxml.jackson.annotation.JsonProperty
Special value that indicates that handlers should use the default name (derived from method or field name) for property.
USE_DEFAULTS - Enum constant in enum com.fasterxml.jackson.annotation.JsonInclude.Include
Pseudo-value used to indicate that the higher-level defaults make sense, to avoid overriding inclusion value.
useInput() - Element in annotation type com.fasterxml.jackson.annotation.JacksonInject
Whether matching value from input (if any) is used for annotated property or not; if disabled (`OptBoolean.FALSE`), input value (if any) will be ignored; otherwise it will override injected value.
UUIDGenerator() - Constructor for class com.fasterxml.jackson.annotation.ObjectIdGenerators.UUIDGenerator
 
UUIDGenerator(Class<?>) - Constructor for class com.fasterxml.jackson.annotation.ObjectIdGenerators.UUIDGenerator
 

V

value() - Element in annotation type com.fasterxml.jackson.annotation.JacksonInject
Logical id of the value to inject; if not specified (or specified as empty String), will use id based on declared type of property.
value() - Element in annotation type com.fasterxml.jackson.annotation.JsonAlias
One or more secondary names to accept as aliases to the official name.
value() - Element in annotation type com.fasterxml.jackson.annotation.JsonBackReference
Logical name for the reference property pair; used to link managed and back references.
value() - Element in annotation type com.fasterxml.jackson.annotation.JsonClassDescription
Defines a human-readable description of the class.
value() - Element in annotation type com.fasterxml.jackson.annotation.JsonFilter
Id of filter to use; if empty String (""), no filter is to be used.
value() - Element in annotation type com.fasterxml.jackson.annotation.JsonGetter
Defines name of the logical property this method is used to access ("get"); empty String means that name should be derived from the underlying method (using standard Bean name detection rules)
value() - Element in annotation type com.fasterxml.jackson.annotation.JsonIgnore
Optional argument that defines whether this annotation is active or not.
value() - Element in annotation type com.fasterxml.jackson.annotation.JsonIgnoreProperties
Names of properties to ignore.
value() - Element in annotation type com.fasterxml.jackson.annotation.JsonIgnoreType
Optional argument that defines whether this annotation is active or not.
value() - Element in annotation type com.fasterxml.jackson.annotation.JsonInclude
Inclusion rule to use for instances (values) of types (Classes) or properties annotated; defaults to JsonInclude.Include.ALWAYS.
value() - Element in annotation type com.fasterxml.jackson.annotation.JsonIncludeProperties
Names of properties to include.
value() - Element in annotation type com.fasterxml.jackson.annotation.JsonKey
Optional argument that defines whether this annotation is active or not.
value() - Element in annotation type com.fasterxml.jackson.annotation.JsonManagedReference
Logical have for the reference property pair; used to link managed and back references.
value() - Element in annotation type com.fasterxml.jackson.annotation.JsonMerge
Whether merging should or should not be enabled for the annotated property.
value() - Element in annotation type com.fasterxml.jackson.annotation.JsonProperty
Defines name of the logical property, i.e.
value() - Element in annotation type com.fasterxml.jackson.annotation.JsonPropertyDescription
Defines a human-readable description of the logical property.
value() - Element in annotation type com.fasterxml.jackson.annotation.JsonPropertyOrder
Order in which properties of annotated object are to be serialized in.
value() - Element in annotation type com.fasterxml.jackson.annotation.JsonRawValue
Optional argument that defines whether this annotation is active or not.
value() - Element in annotation type com.fasterxml.jackson.annotation.JsonRootName
Root name to use if root-level wrapping is enabled.
value() - Element in annotation type com.fasterxml.jackson.annotation.JsonSetter
Optional default argument that defines logical property this method is used to modify ("set"); this is the property name used in JSON content.
value() - Element in annotation type com.fasterxml.jackson.annotation.JsonSubTypes.Type
Class of the subtype
value() - Element in annotation type com.fasterxml.jackson.annotation.JsonSubTypes
Subtypes of the annotated type (annotated class, or property value type associated with the annotated method).
value() - Element in annotation type com.fasterxml.jackson.annotation.JsonTypeName
Logical type name for annotated type.
value() - Element in annotation type com.fasterxml.jackson.annotation.JsonValue
Optional argument that defines whether this annotation is active or not.
value() - Element in annotation type com.fasterxml.jackson.annotation.JsonView
View or views that annotated element is part of.
Value() - Constructor for class com.fasterxml.jackson.annotation.JsonFormat.Value
 
Value(JsonAutoDetect.Visibility, JsonAutoDetect.Visibility, JsonAutoDetect.Visibility, JsonAutoDetect.Visibility, JsonAutoDetect.Visibility) - Constructor for class com.fasterxml.jackson.annotation.JsonAutoDetect.Value
 
Value(JsonFormat) - Constructor for class com.fasterxml.jackson.annotation.JsonFormat.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(JsonTypeInfo.Id, JsonTypeInfo.As, String, Class<?>, boolean, Boolean) - Constructor for class com.fasterxml.jackson.annotation.JsonTypeInfo.Value
 
Value(Nulls, Nulls) - Constructor for class com.fasterxml.jackson.annotation.JsonSetter.Value
 
Value(Object, Boolean) - Constructor for class com.fasterxml.jackson.annotation.JacksonInject.Value
 
Value(String, JsonFormat.Shape, String, String, JsonFormat.Features) - Constructor for class com.fasterxml.jackson.annotation.JsonFormat.Value
Deprecated.
Value(String, JsonFormat.Shape, String, String, JsonFormat.Features, Boolean) - Constructor for class com.fasterxml.jackson.annotation.JsonFormat.Value
 
Value(String, JsonFormat.Shape, Locale, String, TimeZone, JsonFormat.Features) - Constructor for class com.fasterxml.jackson.annotation.JsonFormat.Value
Deprecated.
Value(String, JsonFormat.Shape, Locale, String, TimeZone, JsonFormat.Features, Boolean) - Constructor for class com.fasterxml.jackson.annotation.JsonFormat.Value
 
Value(String, JsonFormat.Shape, Locale, TimeZone, JsonFormat.Features) - Constructor for class com.fasterxml.jackson.annotation.JsonFormat.Value
Deprecated.
Value(String, JsonFormat.Shape, Locale, TimeZone, JsonFormat.Features, Boolean) - Constructor for class com.fasterxml.jackson.annotation.JsonFormat.Value
 
Value(Set<String>) - Constructor for class com.fasterxml.jackson.annotation.JsonIncludeProperties.Value
 
Value(Set<String>, boolean, boolean, boolean, boolean) - Constructor for class com.fasterxml.jackson.annotation.JsonIgnoreProperties.Value
 
valueFilter() - Element in annotation type com.fasterxml.jackson.annotation.JsonInclude
Specifies type of "Filter Object" to use in case JsonInclude.value() is JsonInclude.Include.CUSTOM: if so, an instance is created by calling HandlerInstantiator (of ObjectMapper), which by default simply calls zero-argument constructor of the Filter Class.
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.JacksonInject.Value
 
valueFor() - Method in class com.fasterxml.jackson.annotation.JsonAutoDetect.Value
 
valueFor() - Method in class com.fasterxml.jackson.annotation.JsonFormat.Value
 
valueFor() - Method in class com.fasterxml.jackson.annotation.JsonIgnoreProperties.Value
 
valueFor() - Method in class com.fasterxml.jackson.annotation.JsonInclude.Value
 
valueFor() - Method in class com.fasterxml.jackson.annotation.JsonIncludeProperties.Value
 
valueFor() - Method in class com.fasterxml.jackson.annotation.JsonSetter.Value
 
valueFor() - Method in class com.fasterxml.jackson.annotation.JsonTypeInfo.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.Nulls
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.Nulls
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.
Visibility() - Constructor for enum com.fasterxml.jackson.annotation.JsonAutoDetect.Visibility
 
visible() - Element in annotation type com.fasterxml.jackson.annotation.JsonTypeInfo
Property that defines whether type identifier value will be passed as part of JSON stream to deserializer (true), or handled and removed by TypeDeserializer (false).

W

willUseInput(boolean) - Method in class com.fasterxml.jackson.annotation.JacksonInject.Value
 
with() - Element in annotation type com.fasterxml.jackson.annotation.JsonFormat
Set of JsonFormat.Features to explicitly enable with respect to handling of annotated property.
with(JsonFormat.Feature...) - Method in class com.fasterxml.jackson.annotation.JsonFormat.Features
 
withAllowGetters() - Method in class com.fasterxml.jackson.annotation.JsonIgnoreProperties.Value
 
withAllowSetters() - Method in class com.fasterxml.jackson.annotation.JsonIgnoreProperties.Value
 
withContentFilter(Class<?>) - Method in class com.fasterxml.jackson.annotation.JsonInclude.Value
Mutant factory that will either Set content as USE_DEFAULTS and contentFilter to filter (if filter not null); or Set content as ALWAYS (if filter null)
withContentInclusion(JsonInclude.Include) - Method in class com.fasterxml.jackson.annotation.JsonInclude.Value
 
withContentNulls(Nulls) - Method in class com.fasterxml.jackson.annotation.JsonSetter.Value
 
withCreatorVisibility(JsonAutoDetect.Visibility) - Method in class com.fasterxml.jackson.annotation.JsonAutoDetect.Value
 
withDefaultImpl(Class<?>) - Method in class com.fasterxml.jackson.annotation.JsonTypeInfo.Value
 
withFeature(JsonFormat.Feature) - Method in class com.fasterxml.jackson.annotation.JsonFormat.Value
 
withFieldVisibility(JsonAutoDetect.Visibility) - Method in class com.fasterxml.jackson.annotation.JsonAutoDetect.Value
 
withGetterVisibility(JsonAutoDetect.Visibility) - Method in class com.fasterxml.jackson.annotation.JsonAutoDetect.Value
 
withId(Object) - Method in class com.fasterxml.jackson.annotation.JacksonInject.Value
 
withIdType(JsonTypeInfo.Id) - Method in class com.fasterxml.jackson.annotation.JsonTypeInfo.Value
 
withIdVisible(boolean) - Method in class com.fasterxml.jackson.annotation.JsonTypeInfo.Value
 
withIgnored(String...) - Method in class com.fasterxml.jackson.annotation.JsonIgnoreProperties.Value
 
withIgnored(Set<String>) - Method in class com.fasterxml.jackson.annotation.JsonIgnoreProperties.Value
 
withIgnoreUnknown() - Method in class com.fasterxml.jackson.annotation.JsonIgnoreProperties.Value
 
withInclusionType(JsonTypeInfo.As) - Method in class com.fasterxml.jackson.annotation.JsonTypeInfo.Value
 
withIsGetterVisibility(JsonAutoDetect.Visibility) - Method in class com.fasterxml.jackson.annotation.JsonAutoDetect.Value
 
withLenient(Boolean) - Method in class com.fasterxml.jackson.annotation.JsonFormat.Value
 
withLocale(Locale) - Method in class com.fasterxml.jackson.annotation.JsonFormat.Value
 
withMerge() - Method in class com.fasterxml.jackson.annotation.JsonIgnoreProperties.Value
 
without() - Element in annotation type com.fasterxml.jackson.annotation.JsonFormat
Set of JsonFormat.Features to explicitly disable with respect to handling of annotated property.
without(JsonFormat.Feature...) - Method in class com.fasterxml.jackson.annotation.JsonFormat.Features
 
withoutAllowGetters() - Method in class com.fasterxml.jackson.annotation.JsonIgnoreProperties.Value
 
withoutAllowSetters() - Method in class com.fasterxml.jackson.annotation.JsonIgnoreProperties.Value
 
withoutFeature(JsonFormat.Feature) - Method in class com.fasterxml.jackson.annotation.JsonFormat.Value
 
withoutIgnored() - Method in class com.fasterxml.jackson.annotation.JsonIgnoreProperties.Value
 
withoutIgnoreUnknown() - Method in class com.fasterxml.jackson.annotation.JsonIgnoreProperties.Value
 
withoutMerge() - Method in class com.fasterxml.jackson.annotation.JsonIgnoreProperties.Value
 
withOverrides(JsonAutoDetect.Value) - Method in class com.fasterxml.jackson.annotation.JsonAutoDetect.Value
 
withOverrides(JsonFormat.Features) - Method in class com.fasterxml.jackson.annotation.JsonFormat.Features
 
withOverrides(JsonFormat.Value) - Method in class com.fasterxml.jackson.annotation.JsonFormat.Value
 
withOverrides(JsonIgnoreProperties.Value) - Method in class com.fasterxml.jackson.annotation.JsonIgnoreProperties.Value
Mutant factory method that merges values of this value with given override values, so that any explicitly defined inclusion in overrides has precedence over settings of this value instance.
withOverrides(JsonInclude.Value) - Method in class com.fasterxml.jackson.annotation.JsonInclude.Value
Mutant factory method that merges values of this value with given override values, so that any explicitly defined inclusion in overrides has precedence over settings of this value instance.
withOverrides(JsonIncludeProperties.Value) - Method in class com.fasterxml.jackson.annotation.JsonIncludeProperties.Value
Mutant factory method to override the current value with an another, merging the included fields so that only entries that exist in both original and override set are included, taking into account that "undefined" JsonIncludeProperties.Values do not count ("undefined" meaning that getIncluded() returns null).
withOverrides(JsonSetter.Value) - Method in class com.fasterxml.jackson.annotation.JsonSetter.Value
Mutant factory method that merges values of this value with given override values, so that any explicitly defined inclusion in overrides has precedence over settings of this value instance.
withPattern(String) - Method in class com.fasterxml.jackson.annotation.JsonFormat.Value
 
withPropertyName(String) - Method in class com.fasterxml.jackson.annotation.JsonTypeInfo.Value
 
withRequireTypeIdForSubtypes(Boolean) - Method in class com.fasterxml.jackson.annotation.JsonTypeInfo.Value
 
withSetterVisibility(JsonAutoDetect.Visibility) - Method in class com.fasterxml.jackson.annotation.JsonAutoDetect.Value
 
withShape(JsonFormat.Shape) - Method in class com.fasterxml.jackson.annotation.JsonFormat.Value
 
withTimeZone(TimeZone) - Method in class com.fasterxml.jackson.annotation.JsonFormat.Value
 
withUseInput(Boolean) - Method in class com.fasterxml.jackson.annotation.JacksonInject.Value
 
withValueFilter(Class<?>) - Method in class com.fasterxml.jackson.annotation.JsonInclude.Value
Mutant factory that will either Set value as USE_DEFAULTS and valueFilter to filter (if filter not null); or Set value as ALWAYS (if filter null)
withValueInclusion(JsonInclude.Include) - Method in class com.fasterxml.jackson.annotation.JsonInclude.Value
 
withValueNulls(Nulls) - Method in class com.fasterxml.jackson.annotation.JsonSetter.Value
 
withValueNulls(Nulls, Nulls) - Method in class com.fasterxml.jackson.annotation.JsonSetter.Value
 
WRAPPER_ARRAY - Enum constant in enum com.fasterxml.jackson.annotation.JsonTypeInfo.As
Inclusion mechanism that wraps typed JSON value (POJO serialized as JSON) in a 2-element JSON array: first element is the serialized type identifier, and second element the serialized POJO as JSON Object.
WRAPPER_OBJECT - Enum constant in enum com.fasterxml.jackson.annotation.JsonTypeInfo.As
Inclusion mechanism that wraps typed JSON value (POJO serialized as JSON) in a JSON Object that has a single entry, where field name is serialized type identifier, and value is the actual JSON value.
WRITE_DATE_TIMESTAMPS_AS_NANOSECONDS - Enum constant in enum com.fasterxml.jackson.annotation.JsonFormat.Feature
Override for SerializationFeature.WRITE_DATE_TIMESTAMPS_AS_NANOSECONDS, similar constraints apply.
WRITE_DATES_WITH_ZONE_ID - Enum constant in enum com.fasterxml.jackson.annotation.JsonFormat.Feature
Override for SerializationFeature.WRITE_DATES_WITH_ZONE_ID, similar constraints apply.
WRITE_ONLY - Enum constant in enum com.fasterxml.jackson.annotation.JsonProperty.Access
Access setting that means that the property may only be written (set) as part of deserialization (using "setter" method, or assigning to Field, or passed as Creator argument) but will not be read (get) for serialization, that is, the value of the property is not included in serialization.
WRITE_SINGLE_ELEM_ARRAYS_UNWRAPPED - Enum constant in enum com.fasterxml.jackson.annotation.JsonFormat.Feature
Override for SerializationFeature.WRITE_SINGLE_ELEM_ARRAYS_UNWRAPPED which will force serialization of single-element arrays and Collections as that single element and excluding array wrapper.
WRITE_SORTED_MAP_ENTRIES - Enum constant in enum com.fasterxml.jackson.annotation.JsonFormat.Feature
Override for SerializationFeature.ORDER_MAP_ENTRIES_BY_KEYS, enabling of which will force sorting of Map keys before serialization.

_

_allowGetters - Variable in class com.fasterxml.jackson.annotation.JsonIgnoreProperties.Value
 
_allowSetters - Variable in class com.fasterxml.jackson.annotation.JsonIgnoreProperties.Value
 
_asSet(String[]) - Static method in class com.fasterxml.jackson.annotation.JsonIgnoreProperties.Value
 
_asSet(String[]) - Static method in class com.fasterxml.jackson.annotation.JsonIncludeProperties.Value
 
_contentFilter - Variable in class com.fasterxml.jackson.annotation.JsonInclude.Value
 
_contentInclusion - Variable in class com.fasterxml.jackson.annotation.JsonInclude.Value
 
_contentNulls - Variable in class com.fasterxml.jackson.annotation.JsonSetter.Value
 
_creatorVisibility - Variable in class com.fasterxml.jackson.annotation.JsonAutoDetect.Value
 
_defaultImpl - Variable in class com.fasterxml.jackson.annotation.JsonTypeInfo.Value
 
_defaultPropertyName - Variable in enum com.fasterxml.jackson.annotation.JsonTypeInfo.Id
 
_disabled - Variable in class com.fasterxml.jackson.annotation.JsonFormat.Features
 
_empty(Nulls, Nulls) - Static method in class com.fasterxml.jackson.annotation.JsonSetter.Value
 
_empty(Object, Boolean) - Static method in class com.fasterxml.jackson.annotation.JacksonInject.Value
 
_empty(Set<String>, boolean, boolean, boolean, boolean) - Static method in class com.fasterxml.jackson.annotation.JsonIgnoreProperties.Value
 
_enabled - Variable in class com.fasterxml.jackson.annotation.JsonFormat.Features
 
_equal(T, T) - Static method in class com.fasterxml.jackson.annotation.JsonFormat.Value
 
_equal(T, T) - Static method in class com.fasterxml.jackson.annotation.JsonTypeInfo.Value
 
_equals(JsonAutoDetect.Value, JsonAutoDetect.Value) - Static method in class com.fasterxml.jackson.annotation.JsonAutoDetect.Value
 
_equals(JsonIgnoreProperties.Value, JsonIgnoreProperties.Value) - Static method in class com.fasterxml.jackson.annotation.JsonIgnoreProperties.Value
 
_equals(JsonTypeInfo.Value, JsonTypeInfo.Value) - Static method in class com.fasterxml.jackson.annotation.JsonTypeInfo.Value
 
_equals(Set<String>, Set<String>) - Static method in class com.fasterxml.jackson.annotation.JsonIncludeProperties.Value
 
_features - Variable in class com.fasterxml.jackson.annotation.JsonFormat.Value
 
_fieldVisibility - Variable in class com.fasterxml.jackson.annotation.JsonAutoDetect.Value
 
_getterVisibility - Variable in class com.fasterxml.jackson.annotation.JsonAutoDetect.Value
 
_id - Variable in class com.fasterxml.jackson.annotation.JacksonInject.Value
Id to use to access injected value; if `null`, "default" name, derived from accessor will be used.
_idType - Variable in class com.fasterxml.jackson.annotation.JsonTypeInfo.Value
 
_idVisible - Variable in class com.fasterxml.jackson.annotation.JsonTypeInfo.Value
 
_ignored - Variable in class com.fasterxml.jackson.annotation.JsonIgnoreProperties.Value
Names of properties to ignore.
_ignoreUnknown - Variable in class com.fasterxml.jackson.annotation.JsonIgnoreProperties.Value
 
_included - Variable in class com.fasterxml.jackson.annotation.JsonIncludeProperties.Value
Name of the properties to include.
_inclusionType - Variable in class com.fasterxml.jackson.annotation.JsonTypeInfo.Value
 
_isGetterVisibility - Variable in class com.fasterxml.jackson.annotation.JsonAutoDetect.Value
 
_items - Variable in class com.fasterxml.jackson.annotation.SimpleObjectIdResolver
 
_lenient - Variable in class com.fasterxml.jackson.annotation.JsonFormat.Value
 
_locale - Variable in class com.fasterxml.jackson.annotation.JsonFormat.Value
 
_merge - Variable in class com.fasterxml.jackson.annotation.JsonIgnoreProperties.Value
 
_merge(Set<String>, Set<String>) - Static method in class com.fasterxml.jackson.annotation.JsonIgnoreProperties.Value
 
_nextValue - Variable in class com.fasterxml.jackson.annotation.ObjectIdGenerators.IntSequenceGenerator
 
_nulls - Variable in class com.fasterxml.jackson.annotation.JsonSetter.Value
 
_pattern - Variable in class com.fasterxml.jackson.annotation.JsonFormat.Value
 
_predefined(JsonAutoDetect.Visibility, JsonAutoDetect.Visibility, JsonAutoDetect.Visibility, JsonAutoDetect.Visibility, JsonAutoDetect.Visibility) - Static method in class com.fasterxml.jackson.annotation.JsonAutoDetect.Value
 
_propertyName - Variable in class com.fasterxml.jackson.annotation.JsonTypeInfo.Value
 
_requireTypeIdForSubtypes - Variable in class com.fasterxml.jackson.annotation.JsonTypeInfo.Value
 
_scope - Variable in class com.fasterxml.jackson.annotation.ObjectIdGenerators.Base
 
_setterVisibility - Variable in class com.fasterxml.jackson.annotation.JsonAutoDetect.Value
 
_shape - Variable in class com.fasterxml.jackson.annotation.JsonFormat.Value
 
_timezone - Variable in class com.fasterxml.jackson.annotation.JsonFormat.Value
 
_timezoneStr - Variable in class com.fasterxml.jackson.annotation.JsonFormat.Value
 
_useInput - Variable in class com.fasterxml.jackson.annotation.JacksonInject.Value
 
_valueFilter - Variable in class com.fasterxml.jackson.annotation.JsonInclude.Value
 
_valueInclusion - Variable in class com.fasterxml.jackson.annotation.JsonInclude.Value
 
A B C D E F G H I J K L M N O P R S T U V W _ 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form