Package | Description |
---|---|
com.fasterxml.jackson.databind.deser.impl |
Contains those implementation classes of deserialization part of
data binding that are not considered part of public or semi-public
interfaces.
|
Modifier and Type | Class and Description |
---|---|
(package private) static class |
PropertyValue.Any
Property value type used when storing entries to be added
to a POJO using "any setter" (method that takes name and
value arguments, allowing setting multiple different
properties using single method).
|
(package private) static class |
PropertyValue.Map
Property value type used when storing entries to be added
to a Map.
|
(package private) static class |
PropertyValue.Regular
Property value that used when assigning value to property using
a setter method or direct field access.
|
Modifier and Type | Field and Description |
---|---|
protected PropertyValue |
PropertyValueBuffer._buffered
If we get non-creator parameters before or between
creator parameters, those need to be buffered.
|
PropertyValue |
PropertyValue.next |
Modifier and Type | Method and Description |
---|---|
protected PropertyValue |
PropertyValueBuffer.buffered() |
Constructor and Description |
---|
Any(PropertyValue next,
java.lang.Object value,
SettableAnyProperty prop,
java.lang.String propName) |
Map(PropertyValue next,
java.lang.Object value,
java.lang.Object key) |
PropertyValue(PropertyValue next,
java.lang.Object value) |
Regular(PropertyValue next,
java.lang.Object value,
SettableBeanProperty prop) |