Uses of Class
com.fasterxml.jackson.databind.deser.impl.PropertyValue
-
Packages that use PropertyValue 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. -
-
Uses of PropertyValue in com.fasterxml.jackson.databind.deser.impl
Subclasses of PropertyValue in com.fasterxml.jackson.databind.deser.impl Modifier and Type Class Description (package private) static classPropertyValue.AnyProperty 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 classPropertyValue.MapProperty value type used when storing entries to be added to a Map.(package private) static classPropertyValue.RegularProperty value that used when assigning value to property using a setter method or direct field access.Fields in com.fasterxml.jackson.databind.deser.impl declared as PropertyValue Modifier and Type Field Description protected PropertyValuePropertyValueBuffer. _bufferedIf we get non-creator parameters before or between creator parameters, those need to be buffered.PropertyValuePropertyValue. nextMethods in com.fasterxml.jackson.databind.deser.impl that return PropertyValue Modifier and Type Method Description protected PropertyValuePropertyValueBuffer. buffered()Constructors in com.fasterxml.jackson.databind.deser.impl with parameters of type PropertyValue Constructor 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)
-