Uses of Class
com.fasterxml.jackson.annotation.Nulls
-
Packages that use Nulls Package Description com.fasterxml.jackson.annotation Public core annotations, most of which are used to configure how Data Mapping/Binding works.com.fasterxml.jackson.databind Basic data binding (mapping) functionality that allows for reading JSON content into Java Objects (POJOs) and JSON Trees (JsonNode), as well as writing Java Objects and trees as JSON.com.fasterxml.jackson.databind.deser.std Contains public standard implementations of abstraction that Jackson uses. -
-
Uses of Nulls in com.fasterxml.jackson.annotation
Methods in com.fasterxml.jackson.annotation that return Nulls Modifier and Type Method Description NullscontentNulls()Specifies action to take when input to match into content value (of aCollection,Map, array, or referential value) contains explicit `null` value (if format has one) to bind.NullsJsonSetter.Value. getContentNulls()NullsJsonSetter.Value. getValueNulls()NullsJsonSetter.Value. nonDefaultContentNulls()Returns same asJsonSetter.Value.getContentNulls()unless value would beDEFAULTin which case `null` is returned.NullsJsonSetter.Value. nonDefaultValueNulls()Returns same asJsonSetter.Value.getValueNulls()unless value would beDEFAULTin which case `null` is returned.Nullsnulls()Specifies action to take when input contains explicit `null` value (if format has one).static NullsNulls. valueOf(String name)Returns the enum constant of this type with the specified name.static Nulls[]Nulls. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.fasterxml.jackson.annotation with parameters of type Nulls Modifier and Type Method Description static JsonSetter.ValueJsonSetter.Value. construct(Nulls nulls, Nulls contentNulls)Factory method that may be used (although is NOT the recommended way) to construct an instance from a full set of properties.static JsonSetter.ValueJsonSetter.Value. forContentNulls(Nulls nulls)static JsonSetter.ValueJsonSetter.Value. forValueNulls(Nulls nulls)static JsonSetter.ValueJsonSetter.Value. forValueNulls(Nulls nulls, Nulls contentNulls)JsonSetter.ValueJsonSetter.Value. withContentNulls(Nulls nulls)JsonSetter.ValueJsonSetter.Value. withValueNulls(Nulls nulls)JsonSetter.ValueJsonSetter.Value. withValueNulls(Nulls valueNulls, Nulls contentNulls)Constructors in com.fasterxml.jackson.annotation with parameters of type Nulls Constructor Description Value(Nulls nulls, Nulls contentNulls) -
Uses of Nulls in com.fasterxml.jackson.databind
Fields in com.fasterxml.jackson.databind declared as Nulls Modifier and Type Field Description protected NullsPropertyMetadata. _contentNullsSettings regarding handling of incoming `null`s, both for value itself and, for structured types, content values (array/Collection elements, Map values).protected NullsPropertyMetadata. _valueNullsSettings regarding handling of incoming `null`s, both for value itself and, for structured types, content values (array/Collection elements, Map values).Methods in com.fasterxml.jackson.databind that return Nulls Modifier and Type Method Description NullsPropertyMetadata. getContentNulls()NullsPropertyMetadata. getValueNulls()Methods in com.fasterxml.jackson.databind with parameters of type Nulls Modifier and Type Method Description PropertyMetadataPropertyMetadata. withNulls(Nulls valueNulls, Nulls contentNulls)Constructors in com.fasterxml.jackson.databind with parameters of type Nulls Constructor Description PropertyMetadata(Boolean req, String desc, Integer index, String def, PropertyMetadata.MergeInfo mergeInfo, Nulls valueNulls, Nulls contentNulls) -
Uses of Nulls in com.fasterxml.jackson.databind.deser.std
Methods in com.fasterxml.jackson.databind.deser.std that return Nulls Modifier and Type Method Description protected NullsStdDeserializer. findContentNullStyle(DeserializationContext ctxt, BeanProperty prop)Methods in com.fasterxml.jackson.databind.deser.std with parameters of type Nulls Modifier and Type Method Description protected NullValueProviderStdDeserializer. _findNullProvider(DeserializationContext ctxt, BeanProperty prop, Nulls nulls, JsonDeserializer<?> valueDeser)
-