Class PropertyValue.Any
- java.lang.Object
-
- com.fasterxml.jackson.databind.deser.impl.PropertyValue
-
- com.fasterxml.jackson.databind.deser.impl.PropertyValue.Any
-
- Enclosing class:
- PropertyValue
static final class PropertyValue.Any extends PropertyValue
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).
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class com.fasterxml.jackson.databind.deser.impl.PropertyValue
PropertyValue.Any, PropertyValue.Map, PropertyValue.Regular
-
-
Field Summary
Fields Modifier and Type Field Description (package private) SettableAnyProperty
_property
(package private) java.lang.String
_propertyName
-
Fields inherited from class com.fasterxml.jackson.databind.deser.impl.PropertyValue
next, value
-
-
Constructor Summary
Constructors Constructor Description Any(PropertyValue next, java.lang.Object value, SettableAnyProperty prop, java.lang.String propName)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
assign(java.lang.Object bean)
Method called to assign stored value of this property to specified bean instance
-
-
-
Field Detail
-
_property
final SettableAnyProperty _property
-
_propertyName
final java.lang.String _propertyName
-
-
Constructor Detail
-
Any
public Any(PropertyValue next, java.lang.Object value, SettableAnyProperty prop, java.lang.String propName)
-
-
Method Detail
-
assign
public void assign(java.lang.Object bean) throws java.io.IOException, com.fasterxml.jackson.core.JsonProcessingException
Description copied from class:PropertyValue
Method called to assign stored value of this property to specified bean instance- Specified by:
assign
in classPropertyValue
- Throws:
java.io.IOException
com.fasterxml.jackson.core.JsonProcessingException
-
-