Uses of Class
tools.jackson.databind.introspect.ConcreteBeanPropertyBase
Packages that use ConcreteBeanPropertyBase
Package
Description
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.
Functionality needed for Bean introspection, required for detecting
accessors and mutators for Beans, as well as locating and handling
method annotations.
Contains implementation classes of serialization part of
data binding.
Contains implementation classes of serialization part of
data binding.
-
Uses of ConcreteBeanPropertyBase in tools.jackson.databind.deser
Subclasses of ConcreteBeanPropertyBase in tools.jackson.databind.deserModifier and TypeClassDescriptionclass
This concrete sub-class implements property that is passed via Creator (constructor or static factory method).class
Base class for deserializable properties of a bean: contains both type and name definitions, and reflection-based set functionality.static class
Helper class that is designed to both make it easier to sub-class delegating subtypes and to reduce likelihood of breakage when new methods are added. -
Uses of ConcreteBeanPropertyBase in tools.jackson.databind.deser.impl
Subclasses of ConcreteBeanPropertyBase in tools.jackson.databind.deser.implModifier and TypeClassDescriptionfinal class
This sub-class is used to handle special case of value being a non-static inner class.final class
Wrapper property that is used to handle managed (forward) properties Basically just needs to delegate first to actual forward property, and then to back property.class
SettableBeanProperty
implementation that will try to access value of the property first, and if non-null value found, pass that for update (usingValueDeserializer.deserialize(tools.jackson.core.JsonParser, tools.jackson.databind.DeserializationContext, Object)
) instead of constructing a new value.final class
This concrete sub-class implements property that is set using aMethodHandle
to the setter, which is either a setter method or a field setter.class
final class
SpecializedSettableBeanProperty
implementation used for virtual property that represents Object Id that is used for some POJO types (or properties).final class
This concrete sub-class implements Collection or Map property that is indirectly by getting the property value and directly modifying it. -
Uses of ConcreteBeanPropertyBase in tools.jackson.databind.introspect
Constructors in tools.jackson.databind.introspect with parameters of type ConcreteBeanPropertyBase -
Uses of ConcreteBeanPropertyBase in tools.jackson.databind.ser
Subclasses of ConcreteBeanPropertyBase in tools.jackson.databind.serModifier and TypeClassDescriptionclass
Class similar toBeanPropertyWriter
, but that will be used for serializingJsonAnyGetter
annotated (Map) propertiesclass
Base bean property handler class, which implements common parts of reflection-based functionality for accessing a property value and serializing it.class
Base class for writers used to output property values (name-value pairs) as key/value pairs via streaming API.class
BeanPropertyWriter
implementation used withJsonAppend
to add "virtual" properties in addition to regular ones. -
Uses of ConcreteBeanPropertyBase in tools.jackson.databind.ser.bean
Subclasses of ConcreteBeanPropertyBase in tools.jackson.databind.ser.beanModifier and TypeClassDescriptionclass
Variant ofBeanPropertyWriter
which will handle unwrapping of JSON Object (including of properties of Object within surrounding JSON object, and not as sub-object). -
Uses of ConcreteBeanPropertyBase in tools.jackson.databind.ser.impl
Subclasses of ConcreteBeanPropertyBase in tools.jackson.databind.ser.implModifier and TypeClassDescriptionclass
VirtualBeanPropertyWriter
implementation used forJsonAppend
, to serialize properties backed-by dynamically assignable attribute values. -
Uses of ConcreteBeanPropertyBase in tools.jackson.databind.ser.jdk
Subclasses of ConcreteBeanPropertyBase in tools.jackson.databind.ser.jdkModifier and TypeClassDescriptionclass
Helper class needed to support flexible filtering of Map properties with generic JSON Filter functionality.