Uses of Enum Class
tools.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.
Package that contains standard value and key deserializer implementations
Jackson uses for core JDK types.
Package that contains standard value and key deserializer base classes
that Jackson both uses for its own implementations and offers for
module developers as convenient partial implementations.
Utility classes for Mapper package.
-
Uses of AccessPattern in tools.jackson.databind
Methods in tools.jackson.databind that return AccessPatternModifier and TypeMethodDescriptionValueDeserializer.getEmptyAccessPattern()
This method may be called in conjunction with calls toValueDeserializer.getEmptyValue(DeserializationContext)
, to check whether it needs to be called just once (static values), or each time empty value is needed.ValueDeserializer.getNullAccessPattern()
This method may be called in conjunction with calls toValueDeserializer.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 tools.jackson.databind.deser
Methods in tools.jackson.databind.deser that return AccessPatternModifier and TypeMethodDescriptionNullValueProvider.getNullAccessPattern()
Accessor that may be used to determine if and when provider must be called to access null replacement value. -
Uses of AccessPattern in tools.jackson.databind.deser.bean
Methods in tools.jackson.databind.deser.bean that return AccessPatternModifier and TypeMethodDescriptionBeanDeserializerBase.getEmptyAccessPattern()
BeanDeserializerBase.getNullAccessPattern()
-
Uses of AccessPattern in tools.jackson.databind.deser.impl
Fields in tools.jackson.databind.deser.impl declared as AccessPatternMethods in tools.jackson.databind.deser.impl that return AccessPatternModifier and TypeMethodDescriptionNullsAsEmptyProvider.getNullAccessPattern()
NullsConstantProvider.getNullAccessPattern()
NullsFailProvider.getNullAccessPattern()
-
Uses of AccessPattern in tools.jackson.databind.deser.jdk
Methods in tools.jackson.databind.deser.jdk that return AccessPatternModifier and TypeMethodDescriptionEnumSetDeserializer.getEmptyAccessPattern()
ObjectArrayDeserializer.getEmptyAccessPattern()
PrimitiveArrayDeserializers.getEmptyAccessPattern()
StringArrayDeserializer.getEmptyAccessPattern()
NumberDeserializers.PrimitiveOrWrapperDeserializer.getNullAccessPattern()
-
Uses of AccessPattern in tools.jackson.databind.deser.std
Methods in tools.jackson.databind.deser.std that return AccessPatternModifier and TypeMethodDescriptionContainerDeserializerBase.getEmptyAccessPattern()
DelegatingDeserializer.getEmptyAccessPattern()
ReferenceTypeDeserializer.getEmptyAccessPattern()
StdConvertingDeserializer.getEmptyAccessPattern()
StdScalarDeserializer.getEmptyAccessPattern()
DelegatingDeserializer.getNullAccessPattern()
ReferenceTypeDeserializer.getNullAccessPattern()
Null value varies dynamically (unlike with scalar types), so let's indicate this.StdConvertingDeserializer.getNullAccessPattern()
StdScalarDeserializer.getNullAccessPattern()
-
Uses of AccessPattern in tools.jackson.databind.util
Methods in tools.jackson.databind.util that return AccessPatternModifier and TypeMethodDescriptionstatic AccessPattern
Returns the enum constant of this class with the specified name.static AccessPattern[]
AccessPattern.values()
Returns an array containing the constants of this enum class, in the order they are declared.