Class PropertyValue.Regular
- java.lang.Object
-
- com.fasterxml.jackson.databind.deser.impl.PropertyValue
-
- com.fasterxml.jackson.databind.deser.impl.PropertyValue.Regular
-
- Enclosing class:
- PropertyValue
static final class PropertyValue.Regular extends PropertyValue
Property value that used when assigning value to property using a setter method or direct field access.
-
-
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) SettableBeanProperty
_property
-
Fields inherited from class com.fasterxml.jackson.databind.deser.impl.PropertyValue
next, value
-
-
Constructor Summary
Constructors Constructor Description Regular(PropertyValue next, java.lang.Object value, SettableBeanProperty prop)
-
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 SettableBeanProperty _property
-
-
Constructor Detail
-
Regular
public Regular(PropertyValue next, java.lang.Object value, SettableBeanProperty prop)
-
-
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
-
-