Uses of Enum
com.fasterxml.jackson.databind.util.AccessPattern
Packages that use AccessPattern
Package
Description
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.Contains implementation classes of deserialization part of
data binding.
Contains those implementation classes of deserialization part of
data binding that are not considered part of public or semi-public
interfaces.
Contains public standard implementations of abstraction that
Jackson uses.
Utility classes for Mapper package.
-
Uses of AccessPattern in com.fasterxml.jackson.databind
Methods in com.fasterxml.jackson.databind that return AccessPatternModifier and TypeMethodDescriptionJsonDeserializer.getEmptyAccessPattern()
This method may be called in conjunction with calls toJsonDeserializer.getEmptyValue(DeserializationContext)
, to check whether it needs to be called just once (static values), or each time empty value is needed.JsonDeserializer.getNullAccessPattern()
This method may be called in conjunction with calls toJsonDeserializer.getNullValue(DeserializationContext)
, to check whether it needs to be called just once (static values), or each time empty value is needed. -
Uses of AccessPattern in com.fasterxml.jackson.databind.deser
Methods in com.fasterxml.jackson.databind.deser that return AccessPatternModifier and TypeMethodDescriptionBeanDeserializerBase.getEmptyAccessPattern()
BeanDeserializerBase.getNullAccessPattern()
NullValueProvider.getNullAccessPattern()
Accessor that may be used to determine if and when provider must be called to access null replacement value. -
Uses of AccessPattern in com.fasterxml.jackson.databind.deser.impl
Fields in com.fasterxml.jackson.databind.deser.impl declared as AccessPatternMethods in com.fasterxml.jackson.databind.deser.impl that return AccessPatternModifier and TypeMethodDescriptionNullsAsEmptyProvider.getNullAccessPattern()
NullsConstantProvider.getNullAccessPattern()
NullsFailProvider.getNullAccessPattern()
-
Uses of AccessPattern in com.fasterxml.jackson.databind.deser.std
Methods in com.fasterxml.jackson.databind.deser.std that return AccessPatternModifier and TypeMethodDescriptionContainerDeserializerBase.getEmptyAccessPattern()
DelegatingDeserializer.getEmptyAccessPattern()
EnumSetDeserializer.getEmptyAccessPattern()
ObjectArrayDeserializer.getEmptyAccessPattern()
PrimitiveArrayDeserializers.getEmptyAccessPattern()
ReferenceTypeDeserializer.getEmptyAccessPattern()
StdDelegatingDeserializer.getEmptyAccessPattern()
StdScalarDeserializer.getEmptyAccessPattern()
StringArrayDeserializer.getEmptyAccessPattern()
DelegatingDeserializer.getNullAccessPattern()
NumberDeserializers.PrimitiveOrWrapperDeserializer.getNullAccessPattern()
ReferenceTypeDeserializer.getNullAccessPattern()
Null value varies dynamically (unlike with scalar types), so let's indicate this.StdDelegatingDeserializer.getNullAccessPattern()
StdScalarDeserializer.getNullAccessPattern()
-
Uses of AccessPattern in com.fasterxml.jackson.databind.util
Methods in com.fasterxml.jackson.databind.util that return AccessPatternModifier and TypeMethodDescriptionstatic AccessPattern
Returns the enum constant of this type with the specified name.static AccessPattern[]
AccessPattern.values()
Returns an array containing the constants of this enum type, in the order they are declared.